list str to list 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: how to map array of string to int in python
results = map(int, results)
Example 3: python string to list of int
[int(s) for s in example_string.split(',')]