Quick actions

cmd+k|ctrl+k

Navigation

Languages

bai 3 - 7

Snippet info

Language

Python

Visibility

public

Author

hccc19

Created

2016-10-23T13:43:43Z

Updated

2016-10-23T13:43:43Z

for x in range(1,100):
    if x % 5 == 0:
        print( str(x) + ' == ' + str(x//5) + ' * 5')
INFO