Skip to content

Get Help with Python Module in Terminal on Mac

Vic Phan edited this page Apr 2, 2023 · 2 revisions

• Type python3 and press the return key to go into the Python interactive shell.
image

• Type help(“modules”) and press the return key to list all available modules.
image

• Type help(“< module >”) and press the return key to get help with the desired module.
image

• Press the spacebar to move forward in the help pages.
image

• Press the Q key to exit the help pages.
image

• Type quit() and press the return key when you’re ready to leave the Python interactive shell and return to the UNIX shell.
image

Viccy GitHub

Clone this wiki locally