欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

二级python学习笔记2:命名规则

程序员文章站 2022-03-02 15:41:49
...

变量是保存和表示数据值的一种语法元素。换句话说,变量的值是可以改变的,能够通过赋值(使用等号=表达)方式被修改。

1 命名规则

python语言允许采用大写字母小写字母数字下划线汉字等字符及其组合给变量命名,注意

  1. 首字符不能是数字
  2. 中间不能出现空格
  3. 变量名不能和python的保留字(指被编程语言内部定义并保留使用的标识符)相同
  4. 标识符区分大小写

python 保留字(33)个

Here is a list of the Python keywords.  Enter any keyword to get more help.

False               class               from                or
None                continue            global              pass
True                def                 if                  raise
and                 del                 import              return
as                  elif                in                  try
assert              else                is                  while
async               except              lambda              with
await               finally             nonlocal            yield
break               for                 not                 
相关标签: 二级python