编写一个Python程序,打印从1到100的所有数字。但是:
print(["Fizz"*(not i%3) + "Buzz"*(not i%5) or i for i in range(1, 101)])