Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for x in range(1, 100):
- if (x % 15 == 0):
- print("FizzBuzz", end=' ')
- elif x % 3 == 0:
- print("Fizz", end=' ')
- elif x % 5 == 0:
- print("Buzz", end=' ')
- else:
- print(x, end=' ')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement