Map_pthon Nov 14th, 2017 1:30 am 1 2 3 4 5 6 7 #python s = [ "1", "2", "3" ] print( map(int, s) ) #pthon3 s = [ "1", "2", "3" ] print( listmap(int, s) )