Created
February 1, 2024 12:50
-
-
Save yuchen-xue/51d58372a25d91b413ad5a6e29bcf2ad to your computer and use it in GitHub Desktop.
ImportDocstring
This file contains 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 mymodule | |
print(mymodule.__doc__) | |
print(mymodule.f.__doc__) |
This file contains 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
"""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