> file_name = python.py
> python.py
> def abc(x):
"""
Hello World
"""
pass
As you can see, inside the python.py file contains the function abc. How do I extract the docstring Hello World from it without hardcoding the function name into help() or .__doc__?