1. 标识符

变量、模块名、函数名、类名

2. 标识符的命名规则和规范

规则

  1. 由数字、字母和_组成,不能以数字开头

  2. 区分大小写

  3. 不能使用关键字 | and | as | assert | break | class | continue | | —- | —- | —- | —- | —- | —- | | def | del | elif | else | except | finally | | for | from | False | global | if | import | | in | is | lambda | nonlocal | not | None | | or | pass | raise | return | try | True | | while | with | yield | | | |

规范

  1. 顾名思义

  2. 遵守一定的命名规范

    1. 小驼峰命名法:第一个单词的首字母小写,然后每个字母的首字母都大写 userNameAndPassword
    2. 大驼峰命名法:每个个单词的首字母都大写 PersonModel
    3. 使用下划线连接: user_name_and_password
    4. 在python里的变量、函数和模块名使用下划线连接;python里的类名用大驼峰命名法