Quick actions

cmd+k|ctrl+k

Navigation

Languages

3.7

Snippet info

Language

Python

Visibility

public

Author

tailtt93

Created

2016-10-16T14:23:15Z

Updated

2016-10-23T03:21:04Z

so = list(range(100))
for i in so[::5]:
    print(i, "== " + str(int(i/5)) +"*5")
INFO