Quick actions

cmd+k|ctrl+k

Navigation

Languages

closure

Snippet info

Language

Python

Visibility

public

Author

chanronny48

Created

2025-04-17T01:37:27.563401Z

Updated

2025-04-17T01:52:04.747053Z

def a():
    x = 10
    def b():
        print(x)
    return b
y=a()
y()
y()
INFO