Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercise 3.7

Snippet info

Language

Python

Visibility

public

Author

vinhquang-pyt

Created

2016-09-21T01:42:31Z

Updated

2016-09-27T10:09:12Z

input = list(range(1,101))
j = 0
for i in input:
    if i % 5 == 0:
        j = (i//5)
        print(i, '==' ,j, '*' ,5)
INFO