how to make strings in a list into integers python 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]