2021-10-28 17:37:54 +05:30

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