📜  如何在 python 代码示例中打印消息

📅  最后修改于: 2022-03-11 14:45:36.855000             🧑  作者: Mango

代码示例1
print("Hello World!")
# You can also print other data types
print(True)
print(3.14)
# And, you can print multiple things at a time
print("Hello", "World!")