What is the easiest way to convert list with str into list with int in python? =)
For example, we have to convert ['1','2','3'] to [1,2,3]. Of course, we can use "for:", but it's too easy.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
Python 2.x:
Python 3.x (in 3.x,
|
|||||
|
|
|||||
|
|
|
You could also use list comprehensions:
Or the
Or the
|
|||
|
|
|
If your strings are not only numbers (ie. u''), you can use :
|
|||
|
|