8 lines
138 B
Python
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
|