yeq6x's picture
gpu
cc0703f
raw
history blame
83 Bytes
x = 10
def func():
print(x)
def func2():
global x
x = 20
func2()
func()