

InterviewSolution
Saved Bookmarks
1. |
What is the utility of built-in function help () ? |
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. |
|