@ -1,6 +1,10 @@
#Python unpack testing
#Global test
numbers = [1, 2, 3]
x = 0
x, y, z = numbers
print(x)
print(y)
print(z)
def myfunc():
global x
x = 1
myfunc()
The note is not visible to the blocked user.