convert string in a list to int python code example
Example 1: convert list of strings to ints python
test_list = ['1', '4', '3', '6', '7']
int_list = [int(i) for i in test_list]
Example 2: change list to int in python
test_list = list(map(int,test_list))
Example 3: python convert list of lists of strings to int
x = [['565.0', '575.0'], ['1215.0', '245.0'], ['1740.0', '245.0']]
list_of_integers = [[int(float(j)) for j in i] for i in x]
print(list_of_integers)
--> [[565, 575], [1215, 245], [1740, 245]]
Example 4: python string to list of int
[int(s) for s in example_string.split(',')]