54  docstring, documentation for python methods and classes

class Person:
    """Documentation for the class Person should be here.
    Since docstring uses multi-line string, documentation can be multi-line too"""
    def greeting(self, other_parameters):
        """Documentation for the method greeting here"""
        pass
        
def example_function(parameters):
    """Documentation for the example_function."""
    pass