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

8 lines
138 B
Python

# key.points.assignment.py
x = 3
def func(x):
x = 7 # defining a local x, not changing the global one
func(x)
print(x) # prints: 3