Y
Hacker News
new
|
ask
|
show
|
jobs
by
EE84M3i
1807 days ago
Personally, I mostly just avoid using map/filter and use a list/generator/set/dict comprehension as required. I don't find map(foo, bar) much easier to read than [foo(thingamajig) for thingamajig in bar]
1 comments
robertlagrant
1807 days ago
Yes, this is I think why Guido wanted to get rid of map() syntax - he prefers comprehension syntax.
link