Python Func Help
# Python2.x Python help() Function
[ Python Built-in Functions](#)
* * *
## Description
The **help()** function is used to view detailed documentation for a function or module.
## Syntax
help syntax:
help()
Parameter explanation:
* object -- The object;
## Return Value
Returns the help information for the object.
## Example
The following examples demonstrate the usage of help:
>>>help('sys')# View help for the sys module β¦β¦Displays help informationβ¦β¦ >>>help('str')# View help for the str data type β¦β¦Displays help informationβ¦β¦ >>>a = [1,2,3]>>>help(a)# View help for the list object β¦β¦Displays help informationβ¦β¦ >>>help(a.append)# Display help for the list's append method β¦β¦Displays help informationβ¦β¦
[ Python Built-in Functions](#)
YouTip