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?
|
feedback
|
As mentioned by you follow PEP 8 for the main text, and PEP 257 for docstring conventions Along with Python Style Guides, I suggest that you refer the following: | ||||
|
feedback
|
|
I follow these guidelines. I think they are exactly the same than PEP 8, but are more synthetic and based on examples. If you are using wxPython you might also want to check these too. | ||||
|
feedback
|
|
PEP 8 is good, the only thing that i wish it came down harder on was the Tabs-vs-Spaces holy war. Basically if you are starting a project in python, you need to choose Tabs or Spaces and then shoot all offenders on sight. | |||
|
feedback
|
|
To add to bhadra's list of idiomatic guides: Checkout Anthony Baxter's presentation on Effective Python. An excerpt:
| |||
|
feedback
|
|
I follow it extremely rigorously. The only god before PEP-8 is existing code bases. | |||
feedback
|
|
Yes, I try to follow it as closely as possible. I don't follow any other coding standards. | |||
|
feedback
|
|
I stick to PEP-8 very closely. There are three specific things that I can't be bothered to change to PEP-8.
| |||
feedback
|