代码示例:(标识:python_variables_3)
python_variables_3.py
x = "Bill"
print(x)
#double quotes are the same as single quotes:
x = 'Bill'
print(x)
运行结果: