Python官网
Python3官方文档
英文 https://docs.python.org/3/
中文 https://docs.python.org/zh-cn/3
Python关键字
以下标识符为保留字,或称 关键字,不可用于普通标识符(变量命名)。关键字的拼写必须与这里列出的完全一致:
False await else import pass
None break except in raise
True class finally is return
and continue for lambda try
as def from nonlocal while
assert del global not with
async elif if or yield
说白了,普通变量、函数、类、文件等命名不能使用关键字,且命名要符合命名规范。
命名规范
与 Python 2.x 一样,在 ASCII 范围内,有效标识符字符为:
- 大小写字母
A
至Z
、下划线_
、数字0
至9
,但不能以数字开头 -
变量
[x] id(变量)取得变量的地址
- type(变量)取得变量的类型
- del 删除一个变量
用户交互
```python name = input(“please input your name:”)