/ Published in: Python
URL: http://mail.python.org/pipermail/python-list/2002-September/163734.html
Turns the list [1,2,3] to ['1','2','3']
Expand |
Embed | Plain Text
map(str, [1,2,3])
You need to login to post a comment.
URL: http://mail.python.org/pipermail/python-list/2002-September/163734.html
Turns the list [1,2,3] to ['1','2','3']
map(str, [1,2,3])
You need to login to post a comment.