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