Python补充06 Python之道

做者:Vamei 出处:http://www.cnblogs.com/vamei 欢迎转载,也请保留这段声明。谢谢!html

 

Python有一个彩蛋,用下面语句调出:python

import this

该彩蛋的文档记录于PEP 20程序员

语句执行以后,终端将显示一首"The Zen of Python"的诗,即“Python之道”。这首诗总结了Python的风格,能够指导Python程序员的编程。Python程序员会自豪宣称本身"Pythonic"。Pythonic的一个基本标准,是写出合乎“Python之道”的代码编程

 

下面是“Python之道”的全文,以及我附加的翻译。less

The Zen of Python, by Tim Peterside

Python之道

ui

Beautiful is better than ugly.this

美观胜于丑陋。idea


Explicit is better than implicit.spa

显示胜于隐式。


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.

尽管那个方法可能并不明显,除非你是荷兰人。(Python的做者Guido是荷兰人,这是在致敬)


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之道"强调美观、简单、可读和实用,拒绝复杂或模糊。

 

历史

Tim Peters于June 4, 1999的Python邮件列表,以"The Python Way"为标题,发表了“Python之道”,获得许多Python程序员的认同。另外一方面,2001年的International Python Conference #10 (IPC10, IPC是PyCon的前身)会议,主办方但愿在文化衫上印标语,而这一标语要能表明Python文化。到会的Python程序员们创做了500多条。组织者选了"import this"。后来,Python的做者Guido增长了this.py模块,让这个语句能够在解释器中执行,打印“Python之道”。

Python社区很幽默。

 

此外,PyCon是Python爱好者的集会,能够去给别人展现本身的Python项目,或者听讲座。2012年的PyCon是在北京和上海同时举行。

 

参考文章

相关文章
相关标签/搜索