Advertisement
simeonshopov

From 1 to 1000 ending with 7 loop

Sep 25th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.06 KB | None | 0 0
  1. for i in range(1, 1001):
  2.   if i % 10 == 7:
  3.     print(str(i))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement