How can I convert a list of strings (each of which represents a number, i.e. [‘1’, ‘2’, ‘3’]) into numeric values.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
|
|||||||||||||||
|
|
Use
|
||||
|
|
|
As Long as the strings are of the form '1' rather than 'one' then you can use the int() function. Some sample code would be
Or without the list comprehension
Both examples iterate through the list on strings and apply the int() function to the value. |
|||
|
|
