最近几年Python大火,也让很多人开始学习Python这门语言,其实这门语言中有非常多的有意思的小彩蛋。相信看完一定会让你对这门语言刮目相看。
Hello World
>>> import __hello__
Hello World!
这一定是你没有见过的输入hello world的方式
一堂简单的人生课
>>> import this
...
>>> love = this
>>> this is love
True
>>> love is True
False
>>> love is False
False
>>> love is not True or False
True
>>> love is not True or False; love is love # FML
True
反重力漫画
>>> import antigravity
这会打开这个xkcd 漫画,漫画展示了Python有多么简单易学(大家可以自己感受一下)
Python起源
这个相信大家都知道是荷兰程序员龟叔,在圣诞节开发出来的。Python这个名字其实和它的翻译也没有任何关系,实际的来源是他喜欢的电视剧《Monty Python’s Flying Circus》
你没见过的命名标识符
>>> from math import pi
>>> π = pi
>>> area = π * r**2
>>> résumé = 'knows Python'
>>> 'Python' in résumé
True
>>> 我的英文名 = 'Grey Li'
>>> 我的英文名
'Grey Li'
>>> import webbrowser
>>> 我的网站 = 'http://www.baidu.com'
>>> webbrowser.open(我的网站
Python中的花括号
很多人会奇怪Python中为什么没有花括号,相信大家看到下面的代码就能明白一些
>>> from __future__ import braces
File "<stdin>", line 1
SyntaxError: not a chance
This is to instantly close down any conversation about introducing curly braces to Python
最后奉上Python之禅
>>> 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!
最后送给大家一句话,你知道的越多,你不知道的就越多