Tagged Questions
0
votes
3answers
254 views
Is there an in-place equivalent to 'map' in python?
Possible Duplicate:
Python: map in place
I have a list of strings that I need to sanitize. I have a method for sanitizing them, so I could just do:
new_list = map(Sanitize, old_list)
...