4
votes
8answers
359 views
Is there a value in using map() vs for?
Does map() iterate through the list like "for" would? Is there a value in using map vs for?
If so, right now my code looks like this:
for item in items:
item.my_func()
…
