We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a83d19 commit 59c6ebeCopy full SHA for 59c6ebe
flow/defining_functions/keyword_args.py
@@ -0,0 +1,5 @@
1
+def print_distance(value, unit='meters'):
2
+ print("Distance:", value, unit)
3
+
4
+print_distance(299792458) # is equal to light travels in 1 second.
5
+print_distance(220, 'yards') # is equal to 1 Furlong, used in horse racing.
0 commit comments