docstrings
def test(a):
'''
Info: This function tests and prints param a
'''
print(a)
test(9)
# test() #hover over it
help(test)
print(test.__doc__)INFO
def test(a):
'''
Info: This function tests and prints param a
'''
print(a)
test(9)
# test() #hover over it
help(test)
print(test.__doc__)