Why, oh why?<p>map(str.upper, ['foo', 'bar']) == _(["foo", "bar"]).invoke("upper")<p>[w for w in ["foo", "hello", "bar", "world"] if len(w) > 3] == _.filter(["foo", "hello", "bar", "world"], lambda x, <i>a: len(x) > 3)<p>sorted([i </i> 2 for i in [10, 48, 56, 30, 20] if i > 20]) == _([10, 48, 56, 30, 20]).chain().filter(lambda x, <i>a: x > 20).map(lambda x, </i>a: x * 2).sortBy().value()