Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Noelkd

Noelkd

Noelkd has asked 0 questions and find answers to 23 problems.

Stats

499
EtPoint
146
Vote count
0
questions
23
answers

About

import sys map(lambda x: sys.stdout.write(" ".join((x, "\n"))), map(lambda x: "".join( "Fizz" * (not x%3) + "Buzz" * (not x%5) or str(x)), range(1, 101) ) )

whitespace.