You can use dir(module) to see all available methods/attributes. Also check out PyDocs.
Videos
You can use dir(module) to see all available methods/attributes. Also check out PyDocs.
Use the inspect module:
from inspect import getmembers, isfunction
from somemodule import foo
print(getmembers(foo, isfunction))
Also see the pydoc module, the help() function in the interactive interpreter and the pydoc command-line tool which generates the documentation you are after. You can just give them the class you wish to see the documentation of. They can also generate, for instance, HTML output and write it to disk.
I recently learnt that stuff like .strip(), .title(), exists, which got me interested to learn about all these little bonus gimmicks about Python that I could use in my everyday tasks or to improve functionality in my code.
As of now I know that https://docs.python.org/3/library/functions.html exists but there isn't the functions mentioned above within that list. Is there another list of all these functions including those mentioned out there? Thank you