Course Content
Sample Python Programs
Sample Python Programs
0/1
Selenium Python First Script
Selenium Python First Script
0/2
HTML Form elements
HTML Form elements
0/1
Handle HTML Frames
Handle HTML Frames
0/2
Handling Dropdown Lists
Handling Dropdown Lists
0/2
Selenium Action class
Selenium Action class
0/1
Python Database Programming
Python Database Programming
0/1
Selenium Python for Beginners [ 2024 ]
About Lesson

Python Help Utility

Python’s built-in help utility is one of its most important features. Python Help Utility is interactive. You can interact with the utility with a help prompt. The help system has its own prompt. You can get interactive help using the help utility.

Type help() at the Python prompt:

>>> help()

You will get the help prompt

help>

You can get help on any module, keyword, topic, etc,  using this help utility.

  Python Help Utility

You can exit the help by typing the quit or q command at the help prompt, which returns you to the Python prompt. ( >>> ) To exit the help utility, type q or quit at the help prompt :

help> q

You can also get help on a particular object directly from the Python prompt. You can type “help(prompt)” to get help. For example, to get help on the list

>>> help(list)

This has the same effect as typing the following at the help prompt:

help> list

Join the conversation