代码示例:(标识:python_variables_7)
python_variables_7.py
x = "Python is "
y = "awesome"
z = x + y
print(z)
运行结果: