Quick actions

cmd+k|ctrl+k

Navigation

Languages

Jan17

Snippet info

Language

Python

Visibility

public

Author

marq.w

Created

2025-01-17T01:55:10.615754Z

Updated

2025-01-17T09:07:37.636094Z

def out_func():
    x = 10
    y = 1
    def inner_func():
        print("this is outer value :", x)
    return inner_func
a = out_func()
a()
INFO