Is there a generally accepted way to comment functions in Python? Is the following acceptable?
######################################################### # Create
Use a docstring, as others have already written.
You can even go one step further and add a doctest to your docstring, making automated testing of your functions a snap.