Computer Science, asked by madan9045, 1 year ago

What is the utility of built-in function help () ?

Answers

Answered by malathipremi
4

The help() method calls the built-in Python help system. ... If no argument is passed, Python's help utility (interactive help system) starts on the console. >>> help ...

Answered by basheera2k4
0

Answer:

Python’s built in function help is very useful. When it is provided with a program-name or a module-name or a function-name as an argument it displays the documentation of the argument as help. It also displays the docstrings within its passed-argument’s definition. For example : help math will display the documentation related to module math.

Similar questions