Quick actions

cmd+k|ctrl+k

Navigation

Languages

2-12-2024 am

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-02T04:18:10.252785Z

Updated

2024-12-02T04:36:06.670396Z

def a(x):
    y=1
    print(id(z))
    def b():
        x=10
        print("I am from inner function")
        print(z)
    print(x)
    return b()
z=4
a(9)

INFO