Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created June 3, 2021 06:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amankharwal/6fdb16e568ef7d2b52500ef933107421 to your computer and use it in GitHub Desktop.
Save amankharwal/6fdb16e568ef7d2b52500ef933107421 to your computer and use it in GitHub Desktop.
for i in range(1, 20):
if i % 3 == 0 and i % 5 == 0:
print("FizzBuzz")
elif i % 3 == 0:
print("Fizz")
elif i % 5 == 0:
print("Buzz")
else:
print(i)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment