RosettaCodeData/Task/Documentation/Python/documentation-2.py

12 lines
234 B
Python
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
>>> 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
>>>