Quick actions

cmd+k|ctrl+k

Navigation

Languages

bai 3 - 4

Snippet info

Language

Python

Visibility

public

Author

hccc19

Created

2016-10-23T13:13:26Z

Updated

2016-10-23T13:13:26Z

s = list(enumerate(range(5,17),1))
# print( s)
for x in s:
    print( str(x[0]) +' '+ str(x[1]))
INFO