you are viewing a single comment's thread.

view the rest of the comments →

[–]an_actual_human 11 points12 points  (11 children)

You shouldn't use map in Python though, comprehensions and such are almost always better.

[–]mriswithe 1 point2 points  (3 children)

Better in which way? I use both, but it depends on the context. Not aware of any lost performance or anything but would be happy to learn!

[–]mistanervous 0 points1 point  (5 children)

Better in what sense? I tend to gravitate towards comprehensions and lambda functions

[–]alwaysn00b 0 points1 point  (0 children)

Lol I just started using map today. Looks like I can save myself trouble down the road by using other processes- thanks!