Skip to content

Commit ef18c1f

Browse files
committed
Add spacing between header comment and function
1 parent 85cabee commit ef18c1f

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

examples/07_functions/func_positional_arguments.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# Demonstrates how functions receive arguments by their position
2+
# -----------------------------------------------------------------------------
3+
# Each value is matched to a parameter based on where it appears,
4+
# so the order of the provided arguments matters.
5+
16
def greet(name, age):
27
print("Hello, {0}! You are {1} years old.".format(name, age))
38

0 commit comments

Comments
 (0)