python map string to int

Solutions on MaxInterview for python map string to int by the best coders in the world

showing results for - "python map string to int"
Emely
12 Jul 2019
1T1 = ['13', '17', '18', '21', '32']
2T3 = list(map(int, T1))
3T3
4[13, 17, 18, 21, 32]