python list of string list of integer code example
Example: convert list of strings to ints python
test_list = ['1', '4', '3', '6', '7']
int_list = [int(i) for i in test_list]
test_list = ['1', '4', '3', '6', '7']
int_list = [int(i) for i in test_list]