Quick actions

cmd+k|ctrl+k

Navigation

Languages

Scoping - 2

Snippet info

Language

Python

Visibility

public

Author

petersnpan2047

Created

2026-05-04T04:21:29.410208Z

Updated

2026-05-04T04:21:29.410208Z

#x = 1
def a():
    global x
    #print(x+1)   # global x
    x = 1
    y = 2    # y is closure here
    def b():
        print(y,x)
    b()
a()
print(x)
INFO