在Python中,print函數是用來在控制臺輸出信息的常用函數。您可以使用print來輸出變量的值,文本消息,以及任何您想要在控制臺上顯示的內容。
以下是一些在Python中有效使用print函數的示例:
print("Hello, World!")
x = 10
print("The value of x is:", x)
name = "Alice"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
a = 5
b = 3
print("The values of a and b are:", a, b)
with open("output.txt", "w") as f:
print("Hello, World!", file=f)
通過使用print函數,您可以方便地在Python中輸出各種信息,幫助您調試代碼,查看結果,以及與用戶進行交互。