Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. def fb(n):
  2. i = 1
  3. while i < 101:
  4. if i % 15 == 0:
  5. print(i, "Fizz Buzz!")
  6. elif i % 3 == 0:
  7. print(i, "Fizz!")
  8. elif i % 5 == 0:
  9. print(i, "Buzz!")
  10. else:
  11. print(i)
  12.  
  13. i += 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement