Skip to content

Instantly share code, notes, and snippets.

@shiracamus
Last active April 13, 2018 00:31
Show Gist options
  • Save shiracamus/618a56cbca672dab3365a15b0f9953df to your computer and use it in GitHub Desktop.
Save shiracamus/618a56cbca672dab3365a15b0f9953df to your computer and use it in GitHub Desktop.
fizzbuzz veriation
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