Last active
April 13, 2018 00:31
-
-
Save shiracamus/618a56cbca672dab3365a15b0f9953df to your computer and use it in GitHub Desktop.
fizzbuzz veriation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print(*map(lambda x:"Fizz"*(x%3<1)+"Buzz"*(x%5<1)or x,range(1,101))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment