RosettaCodeData/Task/Documentation/Python/documentation-2.py
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

11 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
>>>