veronikaaa86

01. Numbers Ending in 7

Oct 2nd, 2022
339
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(i)
Add Comment
Please, Sign In to add comment