Quick actions

cmd+k|ctrl+k

Navigation

Languages

3.4

Snippet info

Language

Python

Visibility

public

Author

hoaivu100413

Created

2016-09-23T08:43:56Z

Updated

2016-09-26T03:08:36Z

#Python 3.5
#lhvu
#3.4

lista = list(range(5,16))
for x,y in enumerate(lista, start=1):
    print (x,y)
INFO