Get Help with Python Module in Terminal on Mac - DevPops-Inc/python GitHub Wiki
• Type python3
and press the return key to go into the Python interactive shell.
•
• Type help(“modules”)
and press the return key to list all available modules.
•
• Type help(“< module >”)
and press the return key to get help with the desired module.
•
• Press the spacebar to move forward in the help pages.
•
• Press the Q key to exit the help pages.
•
• Type quit()
and press the return key when you’re ready to leave the Python interactive shell and return to the UNIX shell.
•