Javaexercise.com

Python Self Help

This is an interactive utility tool of Python which helps to search a module, topic, in the standard library, or a function that you want to know more about. This will help you to dig deep inside the topic.


We can open this simply by using help() function in Python shell, see the below screenshot in which we first entered into python console then into help console.

python-self-help

To get help of any topic, we can simply type it here. As suppose, we want to know about keywords in the Python then type keywords and we will get a list of available keywords. See the below screenshot.

python-self-help

To know about any specific keyword, We can pass keyword name to this console and get all the official details about the keyword, we are looking for. See the below screenshot.

python-self-help

We can also get list of all available symbols in Python programming language. See the below screenshot.

python-self-help

To search any specific module, we can use module specific command that will produce list of possible available modules.

python-self-help

To get list of available operators in the Python, we can type OPERATORS (should be in capital) in the help console. See the below screenshot.

python-self-help

Useful Resources: