python内部的python之禅打印

python内部的python之禅打印

打开idle
输入

import this

控制台就会返回 python官方内置的一段话
内容如下

The Zen of Python, by Tim Peters

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之禅》,蒂姆·彼得斯著
特殊情况不足以打破规则。
尽管实用胜过纯粹。
错误永远不应该悄无声息地过去。
除非明确沉默。
面对歧义,拒绝猜测的诱惑。
应该有一种——最好只有一种——显而易见的方法来做到这一点。
尽管这种方式一开始可能并不明显,除非你是荷兰人。
现在总比没有好。
尽管从来没有比现在更好的了。
如果实现很难解释,那就是个坏主意。
如果实现很容易解释,那可能是个好主意。
名称空间是一个非常棒的想法——让我们做更多这样的事情吧!
``

你可能感兴趣的:(python3学习笔记,python,python之禅)