Is there a generally accepted way to comment functions in Python? Is the following acceptable?
######################################################### # Create
I would go for a documentation practice that integrates with a documentation tool such as Sphinx.
The first step is to use a docstring:
docstring
def add(self): """ Method which adds stuff """