Quick actions

cmd+k|ctrl+k

Navigation

Languages

Scoping2

Snippet info

Language

Python

Visibility

public

Author

atkincheung

Created

2025-04-16T07:12:16.006544Z

Updated

2025-04-16T07:12:31.607419Z

h=10
def b():
    def c():
        def d():
            nonlocal a
            a = 100
            print(a,h)
        d()
    b = 1
    a = 2
    print(a)
    c()
b()
INFO