Python program to write sequence of n Fizz Buzz elements.
# ? 2017 TheFlyingKeyboard and released under MIT License # theflyingkeyboard.net n = int(input("Enter number of numbers: ")) for i in range(1, n + 1): if i % 3 == 0 and i % 5 == 0: print("Fizz Buzz") elif i % 3 == 0: print("Fizz") elif i % 5 == 0: print("Buzz") else: print(i)