doc strings python
def calculator(a,b):
"""This function add's the input from user"""
return a + b
#here in the above function from the start to the ending of double colon is a doc string
#we can say docstrings are description of your python function
print(calculator(5,5))