Learn-Python-Programming-Th.../ch04/arguments.positional.py
2021-10-28 17:37:54 +05:30

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