Skip to content

Instantly share code, notes, and snippets.

@gangulymadhura
Created July 8, 2021 07:19
Show Gist options
  • Save gangulymadhura/a0cb504815a4b8642beba2197193606a to your computer and use it in GitHub Desktop.
Save gangulymadhura/a0cb504815a4b8642beba2197193606a to your computer and use it in GitHub Desktop.
# import the class
from my_demo_module import DummyClass
# see what help() shows
help(DummyClass)
# see what __doc__ shows for the whole class
DummyClass.__doc__
# see what __doc__ shows for a particular method
DummyClass.print_text.__doc__
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment