bl00dt3ars

04. Numbers Divided by 3 Without Reminder

Oct 18th, 2020 (edited)
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.05 KB | None | 0 0
  1. for i in range(1, 101):
  2.     if i % 3 == 0:
  3.         print(i)
Add Comment
Please, Sign In to add comment