Python/gloss python variable output
来自菜鸟教程
<languages />
Python输出变量
输出变量
Python
print
语句通常用于输出变量。
例
x = "Python is awesome" print(x)
为了结合文字和变量,Python使用
+
字符:
例
x = "awesome" print("Python is " + x)
您也可以使用逗号字符
,
打印多个字符串/变量:
例
x = "awesome" print("Python is", x)