icps

notes

Map_pthon

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) )