代码示例:(标识:python_variables_4)
python_variables_4.py
x, y, z = "Orange", "Banana", "Cherry"

print(x)
print(y)
print(z)
运行结果: