在Python中,使用print語句可以將數據輸出到控制臺或者文件中。以下是一些使用print語句的示例:
print("Hello, World!")
name = "Alice"
age = 25
print(name)
print(age)
x = 10
y = 20
print("x =", x, "and y =", y)
name = "Bob"
age = 30
print("My name is {} and I am {} years old.".format(name, age))
print("This is a new line.\nThis is a tab.\tThis is a backslash: \\")
注意:在Python 2.x版本中,print是一個語句而不是函數,可以直接使用。而在Python 3.x版本中,print是一個內置函數,需要使用括號將要輸出的內容括起來,例如:print("Hello, World!")
。