12 lines
234 B
Python
12 lines
234 B
Python
|
|
>>> def somefunction():
|
||
|
|
"takes no args and returns None after doing not a lot"
|
||
|
|
|
||
|
|
|
||
|
|
>>> help(somefunction)
|
||
|
|
Help on function somefunction in module __main__:
|
||
|
|
|
||
|
|
somefunction()
|
||
|
|
takes no args and returns None after doing not a lot
|
||
|
|
|
||
|
|
>>>
|