Python中你不知道的彩蛋

本文介绍了Python语言中的几个有趣特性,如非传统导入方式、命名规则、花括号的缺失以及Python之禅,揭示了Python背后的一些独特之处和编码哲学。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

最近几年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!

最后送给大家一句话,你知道的越多,你不知道的就越多

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

「已注销」

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值