Skip to content

Instantly share code, notes, and snippets.

@okplanbo
Created May 12, 2018 16:00
Show Gist options
  • Save okplanbo/decf7485edc65f31aa38e482b909bda0 to your computer and use it in GitHub Desktop.
Save okplanbo/decf7485edc65f31aa38e482b909bda0 to your computer and use it in GitHub Desktop.
Yet another solution to FizzBuzz in one line (Python3)
for m in range(1,100): print("FizzBuzz" if (m%15==0) else"Fizz" if (m%3==0) else "Buzz" if (m%5==0) else m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment