python_interview_question
python_interview_question copied to clipboard
统一代码风格
包括但不限于以下问题
- 代码块的前置缩进究竟要不要
- 该加的空格(双目运算符, 注释前后等)和不需要的空格(行末, 空行中的空格)
- 必要的空行
-
.format
OR%
OR f-string - 是用单引号还是双引号
- 命名规则
- import 位置
参考: https://www.python.org/dev/peps/pep-0008/