>>> upper_list = map(string.upper, list_of_str)
Andreas> What am I supposed to do instead?
Try
[s.upper() for s in list_of_str]
Skip
--
http://mail.python.org/mailman/listinfo/python-list
>>> upper_list = map(string.upper, list_of_str)
Andreas> What am I supposed to do instead?
Try
[s.upper() for s in list_of_str]
Skip
--
http://mail.python.org/mailman/listinfo/python-list