Advertisement
Guest User

Untitled

a guest
Apr 6th, 2020
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. for i in range(1,101):
  2.     if i % 5 == 0 :
  3.         print('Buzz')
  4.     else :
  5.         print(i)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement