2.6. Syntax Convention
2.6.1. Summary
79 characters per line
72 characters per line for comments
PEP 8 -- Style Guide for Python Code
PEP 20 -- The Zen of Python
Readability counts
Special cases aren't special enough to break the rules
Although practicality beats purity
If the implementation is hard to explain, it's a bad idea
Explicit is better than implicit
2.6.2. Line Length
79 line of code
72 for comments (docstrings)
2.6.3. Indent
Spaces, not tabs
4 spaces per indentation level
2.6.4. End of Lines
No semicolon (
;
) at the end of lines
>>> a = 1
>>> b = 2
>>>
>>> a + b
3
2.6.5. The Zen of Python
PEP 20 -- The Zen of Python
Tim Peters
Sent to python-list mailing list on 1999-06-04, subject: "The Python Way"
https://www.wefearchange.org/2010/06/import-this-and-zen-of-python.html
import this
English:
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!
Polish:
Piękne jest lepsze niż brzydkie.
Wyrażone wprost jest lepsze niż domniemane.
Proste jest lepsze niż złożone.
Złożone jest lepsze niż skomplikowane.
Płaskie jest lepsze niż wielopoziomowe.
Rzadkie jest lepsze niż gęste.
Czytelność się liczy.
Sytuacje wyjątkowe nie są na tyle wyjątkowe, aby łamać reguły.
Choć praktyczność przeważa nad konsekwencją.
Błędy zawsze powinny być sygnalizowane.
Chyba że zostaną celowo ukryte.
W razie niejasności powstrzymaj pokusę zgadywania.
Powinien być jeden -- i najlepiej tylko jeden -- oczywisty sposób na zrobienie danej rzeczy.
Choć ten sposób może nie być oczywisty jeśli nie jest się Holendrem.
Teraz jest lepsze niż nigdy.
Chociaż nigdy jest często lepsze niż natychmiast.
Jeśli rozwiązanie jest trudno wyjaśnić, to jest ono złym pomysłem.
Jeśli rozwiązanie jest łatwo wyjaśnić, to może ono być dobrym pomysłem.
Przestrzenie nazw to jeden z niesamowicie genialnych pomysłów -- miejmy ich więcej!
2.6.6. Further Reading
2.6.7. Recap
79 characters per line
72 characters per line for comments
PEP 8 -- Style Guide for Python Code
PEP 20 -- The Zen of Python
Readability counts
Special cases aren't special enough to break the rules
Although practicality beats purity
If the implementation is hard to explain, it's a bad idea
Explicit is better than implicit