enumerate string pythonm

Solutions on MaxInterview for enumerate string pythonm by the best coders in the world

showing results for - "enumerate string pythonm"
Laura
16 Jan 2017
1>>> for i, c in enumerate('test'):
2...     print i, c
3... 
40 t
51 e
62 s
73 t
8