string peta python ke int

T1 = ['13', '17', '18', '21', '32']
T3 = list(map(int, T1))
T3
[13, 17, 18, 21, 32]
Real Raccoon