We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 65fdd31 + fa3d4ef commit 7dc8166Copy full SHA for 7dc8166
1 file changed
examples/07_functions/func_keyword_arguments.py
@@ -1,3 +1,8 @@
1
+# Calling functions with keyword arguments
2
+# -----------------------------------------------------------------------------
3
+# Describe how naming parameters improves readability and allows optional
4
+# argument ordering.
5
+
6
def greet(name, age):
7
print("Hello, {0}! You are {1} years old.".format(name, age))
8
0 commit comments