Python coding standards/best practices - Stack Overflow most recent 30 from stackoverflow.com2009-12-15T07:07:26Zhttp://stackoverflow.com/feeds/question/356161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/356161/python-coding-standards-best-practices5Python coding standards/best practicesKozyarchuk2008-12-10T14:10:07Z2009-03-26T01:48:44Z
<p>In python do you generally use <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8 -- Style Guide for Python Code</a> as your coding standards/guidelines? Are there any other formalized standards that you prefer?</p>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356169#3561691Answer by Oli for Python coding standards/best practicesOli2008-12-10T14:11:27Z2008-12-10T14:11:27Z<p>Yes, I try to follow it as closely as possible.</p>
<p>I don't follow any other coding standards.</p>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356183#3561832Answer by lazypython for Python coding standards/best practiceslazypython2008-12-10T14:16:04Z2008-12-10T14:16:04Z<p>I follow it extremely rigorously. The only god before PEP-8 is existing code bases.</p>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356192#3561923Answer by Mapad for Python coding standards/best practicesMapad2008-12-10T14:19:08Z2008-12-10T15:30:09Z<p>I follow these <a href="http://jaynes.colorado.edu/PythonGuidelines.html" rel="nofollow">guidelines</a>. I think they are exactly the same than PEP 8, but are more synthetic and based on examples.</p>
<p>If you are using wxPython you might also want to <a href="http://wiki.wxpython.org/wxPython%20Style%20Guide" rel="nofollow">check these</a> too.</p>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356238#35623814Answer by bhadra for Python coding standards/best practicesbhadra2008-12-10T14:30:03Z2008-12-10T14:30:03Z<p>"> In python do you generally use PEP 8 -- Style Guide for Python Code as your coding standards/guidelines? Are there any other formalized standards that you prefer?"</p>
<p>As mentioned by you follow <a href="http://www.python.org/dev/peps/pep-0008/" rel="nofollow">PEP 8</a> for the main text, and <a href="http://www.python.org/dev/peps/pep-0257/" rel="nofollow">PEP 257</a> for docstring conventions</p>
<p>Along with Python Style Guides, I suggest that you refer the following:</p>
<ol>
<li><a href="http://python.net/~goodger/projects/pycon/2007/idiomatic/" rel="nofollow">Code Like a Pythonista: Idiomatic Python</a></li>
<li><a href="http://learnpython.pbwiki.com/PythonTricks" rel="nofollow">Common mistakes and Warts</a></li>
<li><a href="http://eikke.com/how-not-to-write-python-code/" rel="nofollow">How not to write Python code</a></li>
<li><a href="http://eikke.com/python-gotcha/" rel="nofollow">Python gotcha</a></li>
</ol>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356305#3563052Answer by Ryan for Python coding standards/best practicesRyan2008-12-10T14:45:36Z2008-12-10T14:45:36Z<p>PEP 8 is good, the only thing that i wish it came down harder on was the Tabs-vs-Spaces holy war. </p>
<p>Basically if you are starting a project in python, you need to choose Tabs or Spaces and then shoot all offenders on sight. </p>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/356426#3564263Answer by Ryan Cox for Python coding standards/best practicesRyan Cox2008-12-10T15:17:46Z2008-12-10T15:17:46Z<p>To add to <a href="http://stackoverflow.com/users/30289/bhadra">bhadra's</a> <a href="http://stackoverflow.com/questions/356161/python-coding-standardsbest-practices#356238">list</a> of idiomatic guides:</p>
<p>Checkout Anthony Baxter's presentation on <a href="http://www.interlink.com.au/anthony/tech/talks/NCSS2008/EffectivePython%20-%20NCSS.pdf" rel="nofollow">Effective Python</a>.</p>
<p>An excerpt:</p>
<pre><code># dict's setdefault method turns this:
if key in dictobj:
dictobj[key].append(val)
else:
dictobj[key] = [val]
# into this:
dictobj.setdfault(key,[]).append(val)
</code></pre>
http://stackoverflow.com/questions/356161/python-coding-standards-best-practices/684233#6842331Answer by S.Lott for Python coding standards/best practicesS.Lott2009-03-26T01:48:44Z2009-03-26T01:48:44Z<p>I stick to PEP-8 very closely.</p>
<p>There are three specific things that I can't be bothered to change to PEP-8.</p>
<ul>
<li><p>Avoid extraneous whitespace immediately inside parentheses, brackets or braces.</p>
<p>Suggested: <code>spam(ham[1], {eggs: 2})</code></p>
<p>I do this anyway: <code>spam( ham[ 1 ], { eggs: 2 } )</code></p>
<p>Why? 30+ years of ingrained habit is snuggling ()'s up against function names or (in C) statements keywords. Starting with Fortran IV in the 70's.</p></li>
<li><p>Use spaces around arithmetic operators:</p>
<p>Suggested: <code>x = x * 2 - 1</code></p>
<p>I do this anyway: <code>x= x * 2 - 1</code></p>
<p>Why? Gries' The Science of Programming suggested this as a way to emphasize the connection between assignment and the variable who's state is being changed.</p>
<p>It doesn't work well for multiple assignment or augmented assignment, for that I use lots of spaces.</p></li>
<li><p>For function names, method names and instance variable names</p>
<p>Suggested: lowercase, with words separated by underscores as necessary to improve readability.</p>
<p>I do this anyway: camelCase</p>
<p>Why? 20+ years of ingrained habit of camelCase, starting with Pascal in the 80's.</p></li>
</ul>