Is there a generally accepted way to comment functions in Python? Is the following acceptable?
######################################################### # Create
You can use three quotes to do it.
You can use single quotes:
def myfunction(para1,para2): ''' The stuff inside the function '''
Or double quotes:
def myfunction(para1,para2): """ The stuff inside the function """