Quick actions

cmd+k|ctrl+k

Navigation

Languages

250504-01

Snippet info

Language

Python

Visibility

public

Author

petersnpan2047

Created

2026-05-04T01:38:49.300545Z

Updated

2026-05-04T01:41:32.273291Z


def a():
    x = 1
    def b():
        print(f"x is : {x}")
    return b
x = a()
x()



INFO