86 - Docstrings
def test(a):
'''
Info: this function tests and prints param a
'''
print(a)
test('!!!!')
# Another way to get the comment is by using the built-in function help:
help(test)
# Another way:
print(test.__doc__)INFO