我正在阅读关于 Stack Overflow 的另一个问题(Zen of Python),我在 Jaime Soriano 的回答中遇到了这一行:
import this
"".join([c in this.d and this.d[c] or c for c in this.s])
在 Python shell 中输入上述内容会打印:
"The Zen of Python, by Tim Peters\n\nBeautiful is better than ugly.\nExplicit is
better than implicit.\nSimple is better than complex.\nComplex is better than
complicated.\nFlat is better than nested.\nSparse is better than dense.
\nReadability counts.\nSpecial cases aren't special enough to break the rules.
\nAlthough practicality beats purity.\nErrors should never pass silently.
\nUnless explicitly silenced.\nIn the face of ambiguity, refuse the temptation to
guess.\nThere should be one-- and preferably only one --obvious way to do it.
\nAlthough that way may not be obvious at first unless you're Dutch.\nNow is
better than never.\nAlthough never is often better than *right* now.\nIf the
implementation is hard to explain, it's a bad idea.\nIf the implementation is
easy to explain, it may be a good idea.\nNamespaces are one honking great idea
-- let's do more of those!"
所以当然,我不得不用整个上午的时间来试图理解上面的列表……理解……事情。我不敢断然宣布它被混淆了,但这只是因为我已经编程了一个半月,所以不确定这种结构在 python 中是否司空见惯。
this.s
包含上述打印输出的编码版本:
"Gur Mra bs Clguba, ol Gvz Crgref\n\nOrnhgvshy vf orggre guna htyl.\nRkcyvpvg vf orggre guna vzcyvpvg.\nFvzcyr vf orggre guna pbzcyrk.\nPbzcyrk vf orggre guna pbzcyvpngrq.\nSyng vf orggre guna arfgrq.\nFcnefr vf orggre guna qrafr.\nErnqnovyvgl pbhagf.\nFcrpvny pnfrf nera'g fcrpvny rabhtu gb oernx gur ehyrf.\nNygubhtu cenpgvpnyvgl orngf chevgl.\nReebef fubhyq arire cnff fvyragyl.\nHayrff rkcyvpvgyl fvyraprq.\nVa gur snpr bs nzovthvgl, ershfr gur grzcgngvba gb thrff.\nGurer fubhyq or bar-- naq cersrenoyl bayl bar --boivbhf jnl gb qb vg.\nNygubhtu gung jnl znl abg or boivbhf ng svefg hayrff lbh'er Qhgpu.\nAbj vf orggre guna arire.\nNygubhtu arire vf bsgra orggre guna *evtug* abj.\nVs gur vzcyrzragngvba vf uneq gb rkcynva, vg'f n onq vqrn.\nVs gur vzcyrzragngvba vf rnfl gb rkcynva, vg znl or n tbbq vqrn.\nAnzrfcnprf ner bar ubaxvat terng vqrn -- yrg'f qb zber bs gubfr!"
并this.d
包含一个带有解码密码的字典this.s
:
{'A': 'N', 'C': 'P', 'B': 'O', 'E': 'R', 'D': 'Q', 'G': 'T', 'F': 'S', 'I': 'V', 'H': 'U', 'K': 'X', 'J': 'W', 'M': 'Z', 'L': 'Y', 'O': 'B', 'N': 'A', 'Q': 'D', 'P': 'C', 'S': 'F', 'R': 'E', 'U': 'H', 'T': 'G', 'W': 'J', 'V': 'I', 'Y': 'L', 'X': 'K', 'Z': 'M', 'a': 'n', 'c': 'p', 'b': 'o', 'e': 'r', 'd': 'q', 'g': 't', 'f': 's', 'i': 'v', 'h': 'u', 'k': 'x', 'j': 'w', 'm': 'z', 'l': 'y', 'o': 'b', 'n': 'a', 'q': 'd', 'p': 'c', 's': 'f', 'r': 'e', 'u': 'h', 't': 'g', 'w': 'j', 'v': 'i', 'y': 'l', 'x': 'k', 'z': 'm'}
据我所知,Jaime 代码中的执行流程是这样的:
1. 循环c for c in this.s
为 c 赋值
2. 如果语句的c in this.d
计算结果为 True,则“and”语句会执行恰好在其右侧的任何内容,在这种情况下this.d[c]
。
3. 如果该语句的c in this.d
计算结果为 False(这在 Jaime 的代码中从未发生过),“或”语句将执行恰好位于其右侧的任何内容,在本例中为循环c for c in this.s
。
我对那个流程是否正确?
即使我对执行顺序的看法是正确的,这仍然给我留下了很多问题。为什么 <1> 是第一个执行的,即使它的代码在几个条件语句之后出现在最后一行?换句话说,为什么for
循环开始执行并赋值,但实际上只是在代码执行的后期才返回一个值,如果有的话?
此外,对于奖励积分,Zen 文件中关于荷兰语的奇怪行是什么?
编辑:虽然现在说出来让我感到羞耻,但直到三秒钟前,我还以为 Guido van Rossum 是意大利人。在阅读了他的 Wikipedia 文章后,我至少掌握了(如果不是完全理解的话)为什么会有那条线。