Answers for "turn list of strings into integers python"

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

list of strings to numbers python

test_list = ['1', '4', '3', '6', '7']
test_list = list(map(int, test_list))
Posted by: Guest on May-16-2021

Code answers related to "turn list of strings into integers python"

Python Answers by Framework

Browse Popular Code Answers by Language