6 lines
96 B
Python
6 lines
96 B
Python
# arguments.positional.py
|
|
def func(a, b, c):
|
|
print(a, b, c)
|
|
|
|
func(1, 2, 3) # prints: 1 2 3
|