当前位置 : 主页 > 编程语言 > python >

python 语法规范

来源:互联网 收集:自由互联 发布时间:2022-06-15
在python shell 中输入 import this 可以看到python之禅 The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. Flat is bett

在python shell 中输入 import this

可以看到python之禅

python 语法规范_官网

The Zen of Python, by Tim Peters

Beautiful is better than ugly.
Explicit is better than implicit.
Simple is better than complex.
Complex is better than complicated.
Flat is better than nested.
Sparse is better than dense.
Readability counts.
Special cases aren't special enough to break the rules.
Although practicality beats purity.
Errors should never pass silently.
Unless explicitly silenced.
In the face of ambiguity, refuse the temptation to guess.
There should be one-- and preferably only one --obvious way to do it.
Although that way may not be obvious at first unless you're Dutch.
Now is better than never.
Although never is often better than *right* now.
If the implementation is hard to explain, it's a bad idea.
If the implementation is easy to explain, it may be a good idea.
Namespaces are one honking great idea -- let's do more of those!

官网中的PEP8标准

详细的预防规范

官网路径:Documentation——Developer’s Guide——PEP 8

​​PEP 8 -- Style Guide for Python Code​​

python 语法规范_官网_02

python 语法规范_ide_03

python 语法规范_python_04

pycharm配置autopep8

配置后,自动格式化代码

安装 autopep8

cmd窗口输入:pip install autopep8

python 语法规范_官网_05

python 语法规范_python_06

在Pycharm中安装autopep8配置

配置项目

  • Name:Autopep8(可以随便取)
  • Tools settings
    Programs:autopep8
    Arguments:--in-place --aggressive --aggressive \(FilePath\)
    Working directory:\(ProjectFileDir\)
    点击Output Files→添加,在对话框中的:Regular expression to match output中输入:\(FILE_PATH\):\(LINE\):\(COLUMN\):.*
    python 语法规范_官网_07





上一篇:python 正则表达式
下一篇:没有了
网友评论