Possible Duplicate:
How to convert strings into integers in python?
I need to change a list of strings into a list of integers how do i do this
i.e
('1', '1', '1', '1', '2') into (1,1,1,1,2).
I need to change a list of strings into a list of integers how do i do this i.e ('1', '1', '1', '1', '2') into (1,1,1,1,2). |
|||||||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Use list comprehensions:
Stuff for completeness:As your “list” is in truth a tuple, i.e. a immutable list, you would have to use a generator expression together with a tuple constructor to get another tuple back:
The “generator expression” i talk about looks like this when not wrapped in a constructor call, and returns a generator this way.
|
|||||
|
|
|
Use the
Output:
A performance comparison with the list comprehension:
Output:
And with longer lists:
Output:
It appears that, (on my machine) in this case, the |
|||||||||||||||||||
|
|
You could use list comprehension which would look roughly like:
|
|||
|
|