二级python学习笔记2:命名规则
程序员文章站
2022-03-02 15:41:49
...
变量是保存和表示数据值的一种语法元素。换句话说,变量的值是可以改变的,能够通过赋值(使用等号=表达)方式被修改。
1 命名规则
python语言允许采用大写字母、小写字母、数字、下划线和汉字等字符及其组合给变量命名,注意
- 首字符不能是数字
- 中间不能出现空格
- 变量名不能和python的保留字(指被编程语言内部定义并保留使用的标识符)相同
- 标识符区分大小写
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