共计 433 个字符,预计需要花费 2 分钟才能阅读完成。
在 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!")
。
丸趣 TV 网 – 提供最优质的资源集合!
正文完