等号(=)用于给变量赋值。赋值后,下一个交互提示符的位置不显示任何结果,实例如下:
>>> width = 20
>>> height = 5 * 9
>>> width * height
900
如果变量未定义(即,未赋值),使用该变量会提示错误,输出结果如下:
>>> n # try to access an undefined variable
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'n' is not defined