共计 233 个字符,预计需要花费 1 分钟才能阅读完成。
要在 Python 中打印变量,您可以使用 print 语句或 print 函数。下面是两种方法的示例:
- 使用 print 语句:
variable = 'Hello, World!'
print variable
- 使用 print 函数:
variable = 'Hello, World!'
print(variable)
请注意,在 Python 2.x 中,print 语句不需要括号,但在 Python 3.x 中,print 函数需要括号。使用哪种方法取决于您使用的 Python 版本。
丸趣 TV 网 – 提供最优质的资源集合!
正文完