Learn-Python-Programming-Th.../ch04/key.points.argument.passing.py
2021-10-28 17:37:54 +05:30

7 lines
87 B
Python

# key.points.argument.passing.py
x = 3
def func(y):
print(y)
func(x) # prints: 3