Day 29-Docstrings
Docstrings in python
Python docstrings are the string literals that appear right after the definition of a function, method, class, or module.
Example
def square(n):
'''Takes in a number n, return
codingsplash.hashnode.dev4 min read