Python官网

https://www.python.org/

Python3官方文档

英文 https://docs.python.org/3/
中文 https://docs.python.org/zh-cn/3

Python关键字

以下标识符为保留字,或称 关键字,不可用于普通标识符(变量命名)。关键字的拼写必须与这里列出的完全一致:

  1. False await else import pass
  2. None break except in raise
  3. True class finally is return
  4. and continue for lambda try
  5. as def from nonlocal while
  6. assert del global not with
  7. async elif if or yield

说白了,普通变量、函数、类、文件等命名不能使用关键字,且命名要符合命名规范。

命名规范

与 Python 2.x 一样,在 ASCII 范围内,有效标识符字符为:

  • 大小写字母 AZ、下划线 _、数字 09,但不能以数字开头
  • 标识符的长度没有限制,但区分大小写。

    变量

  • [x] id(变量)取得变量的地址

  • type(变量)取得变量的类型
  • del 删除一个变量

    用户交互

    ```python name = input(“please input your name:”)

print(“i am %s” % name) ``` image.png

注释

单行注释
‘’’ ‘’’ 或””” “””多行注释