Files
Learn-Python-Programming-Th…/ch04/arguments.positional.py
T
adii1823 ee641c189f ch04
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