map string to int python code example
Example: python map string to int
T1 = ['13', '17', '18', '21', '32']
T3 = list(map(int, T1))
T3
[13, 17, 18, 21, 32]
T1 = ['13', '17', '18', '21', '32']
T3 = list(map(int, T1))
T3
[13, 17, 18, 21, 32]