What are the well-known and generally recognized (not subjective) techniques for writing good python code. Structuring it (in opposite to spaghetti code). Good practices for decomposition and decision to make new function or class and similar practical things. You can post a link where are described and demonstrating them in opposite to poor practices.

thank you

link|improve this question

1  
Open-ended, subjective questions like this don't belong on Stack Overflow. – Russell Borogove Jun 1 '11 at 18:18
1  
-1 for subjective, but +1 for hilarious spelling of spaghetti – Chris Jun 1 '11 at 18:20
feedback

closed as not constructive by Demian Brecht, AJ., Chris, delnan, Wooble Jun 1 '11 at 18:35

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

3 Answers

up vote 4 down vote accepted

See: PEP 8

link|improve this answer
feedback

General sense applies, and follow the style guide:

http://www.python.org/dev/peps/pep-0008/

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.