在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!")
。