Skip to content

Instantly share code, notes, and snippets.

@SeanSyue
Created February 1, 2024 12:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save SeanSyue/51d58372a25d91b413ad5a6e29bcf2ad to your computer and use it in GitHub Desktop.
Save SeanSyue/51d58372a25d91b413ad5a6e29bcf2ad to your computer and use it in GitHub Desktop.
ImportDocstring
import mymodule
print(mymodule.__doc__)
print(mymodule.f.__doc__)
"""This is the module docstring."""
def f(x):
"""This is the function docstring."""
return 2 * x
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment