Created
July 8, 2021 07:19
-
-
Save gangulymadhura/a0cb504815a4b8642beba2197193606a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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