Python编码规范

2020-09-01  本文已影响0人  庄周幻梦

编程之禅

import this
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!

PEP Python Enhancement Proposals Python增强规范

PEP8: PEP中的第八条:Style Guide for Python Code

"""
This is a doc String
"""
# This is A
# This is B
print("Hello world") # 打印Hello world
上一篇 下一篇

猜你喜欢

热点阅读