Skip to content

Latest commit

 

History

History
21 lines (20 loc) · 1.69 KB

Python之禪.md

File metadata and controls

21 lines (20 loc) · 1.69 KB

Zen of Python(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.(不做比盲目去做好^極限編程中的YAGNI原則^) 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!(命名空間非常有用,我們應當多加利用)