Answers for "how to convert a list of strings to list of integers"

14

convert list of strings to ints python

test_list = ['1', '4', '3', '6', '7'] 

int_list = [int(i) for i in test_list]
Posted by: Guest on July-02-2020
0

string list to int list python

results = [int(i) for i in results]
Posted by: Guest on January-05-2021

Code answers related to "how to convert a list of strings to list of integers"

Python Answers by Framework

Browse Popular Code Answers by Language