Skip to content

Instantly share code, notes, and snippets.

@AayushSameerShah
Created May 19, 2021 14:01
Show Gist options
  • Save AayushSameerShah/95dae8463ea568efb0e848b110c44c99 to your computer and use it in GitHub Desktop.
Save AayushSameerShah/95dae8463ea568efb0e848b110c44c99 to your computer and use it in GitHub Desktop.
This is the short form for your reminder
for i in range(50):
print("Fizz" * (i % 3 == 0) + "Buzz" * (i % 5 == 0) or False)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment