InterviewSolution
Saved Bookmarks
| 1. |
What is the use of help() and dir() functions? |
|
Answer» help() function in PYTHON is used to display the documentation of modules, classes, functions, keywords, etc. If no parameter is PASSED to the help() function, then an interactive help utility is launched on the console. |
|