彩蛋 Python之道

来源:互联网 发布:雷欧mac飞机 编辑:程序博客网 时间:2024/05/13 23:51

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

 

使用下面的语句可以调出Python中的一个彩蛋,

import this

该彩蛋的文档记录于PEP 20。语句执行之后,终端将显示一首"The Zen of Python"的诗 (Python之道)。这首诗实际上是对Python编程风格的总结,对Python程序员有很好的指导作用。Python程序员有时候会自豪的说自己"Pythonic"。写出符合Python之道标准的程序,是Pythonic的一个基本标准。

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

The Zen of Python, by Tim Peters

Python之道

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.

尽管那个方法可能并不明显,除非你是荷兰人。(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之道"可以看出,Python程序要求美观、简单、可读和实用,拒绝复杂或模糊。

 

一点历史

"Python之道"由Tim Peters发表于June 4, 1999的Python邮件列表,以"The Python Way"为标题。2001年的International Python Conference #10 (IPC10, IPC是PyCon的前身)会议,主办方希望文化衫印上具有强烈Python风的标语。到会的Python程序员热情的创作了500多条,最终敲定了"import this"。后来,Python的作者Guido加入了this.py模块,让这个语句可以在解释器中真正执行。该语句的功能就是在终端打印"Python之道"。

好吧,Python社区还是很具有幽默感的。

 

此外,PyCon是Python爱好者的集会,可以去给别人展示自己的Python项目,或者听讲座。2012年的PyCon是在北京和上海同时举行。不知道2013有没有人组织。

 

参考文章

 


<script type="text/javascript"><!--google_ad_client = "ca-pub-1944176156128447";/* cnblogs 首页横幅 */google_ad_slot = "5419468456";google_ad_width = 728;google_ad_height = 90;//--></script><script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>