We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 64f3c2e + 2e9cc0c commit d3f60ffCopy full SHA for d3f60ff
1 file changed
examples/09_docstrings/docstring_function.py
@@ -1,3 +1,9 @@
1
+# Docstring for a Function
2
+# --------------------------------------------------------------------------------
3
+# Documenting a function with a docstring explains what the function does,
4
+# clarifies its expected arguments and return value, and allows automated
5
+# tools to generate user-friendly documentation.
6
+
7
def myfunction(a, b, c):
8
"""This is junior docstring for myfunction
9
0 commit comments