All problems
EasyFunctions
Docstrings
Add a one-line docstring to `add(a, b)`, then print `add.__doc__`.
- #docstring
Sample input
add(2, 3)
Sample output
Return the sum of a and b. 5
docstring-fn.py
Output
Press "Run code" to execute.
Loading…
Add a one-line docstring to `add(a, b)`, then print `add.__doc__`.
add(2, 3)
Return the sum of a and b. 5
Press "Run code" to execute.