Answers for "python all strings in list to number"

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
1

how to map array of string to int in python

results = map(int, results)
Posted by: Guest on June-22-2020

Code answers related to "python all strings in list to number"

Python Answers by Framework

Browse Popular Code Answers by Language