We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fd755f commit aece354Copy full SHA for aece354
Python/one-line-solution.py
@@ -1,3 +1,3 @@
1
# Python 1 line code for FizzBuzz
2
# Author: @mohammed-ijas
3
-print(*map(lambda v: 'Fizz'*(not v%3)+'Buzz'*(not v%5) or v, range(1,101)),sep=' ')
+print(*map(lambda v: 'Fizz'*(not v%3)+'Buzz'*(not v%5) or v, range(1,101)),sep=', ')
0 commit comments