Fizzbuzz di Python menggunakan lambda

print(*map(lambda i: 'Fizz'*(not i%3)+'Buzz'*(not i%5) or i, range(1,101)),sep='\n')
Outrageous Ostrich