The Zen of 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!
"""


"""
Python的禅,由提姆彼得斯
漂亮优于丑陋。 
明白优于隐式。 
简单比复杂好。 
复杂的比杂乱的好。 
扁平比嵌套的更好。 
疏比密集越好。

 
易读。
特殊的条件不是足以打破规则。
尽管有用性比纯。
错误不应该被默默传递。
除非明白指出。
面对歧义,拒绝推測的诱惑。


应该有一个——最好仅仅有一个——明显的方式去做。
尽管这样可能并不明显,除非你是第一个荷兰。
如今比没有好。


尽管从来没有比方今好。
假设实现是非常难解释的。这不是个好主意。
假设非常easy解释。这可能是一个好主意。


名称空间是一个伟大的想法——让我们做很多其它的!


"""

原文地址:https://www.cnblogs.com/mthoutai/p/7214637.html