Quick actions

cmd+k|ctrl+k

Navigation

Languages

docstrings

Snippet info

Language

Python

Visibility

public

Author

ankushsahu203

Created

2026-07-22T05:51:48.010591Z

Updated

2026-07-22T05:51:48.010591Z

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