>Holds the hints/suggestions for the working of a function/class provided by the developer. It begins just below the start of a function/class definition. This is a way of documenting functions/class behaviours, it's a good practice to write a short summary about a complicated/long function/class.
class MyClass:
"""This is a docstring."""
def my_fun():
"""This is what this method does..."""