当前位置:优草派 > 问答 > Python问答

Python给变量赋值要用什么运算符?

标签: Python  python变量  作者: 罗西汉

回答:

等号(=)用于给变量赋值。赋值后,下一个交互提示符的位置不显示任何结果,实例如下:

>>> 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

TOP 10
  • 周排行
  • 月排行