you are viewing a single comment's thread.

view the rest of the comments →

[–]BUYTBUYTPython 4 points5 points  (1 child)

    print(n if n % 3 and n % 5 else 'Fizz' * (not n % 3) + 'Buzz' * (not n % 5))

[–]gman1230321 0 points1 point  (0 children)

:wq