Quick actions

cmd+k|ctrl+k

Navigation

Languages

Function (Block stack)

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-02T02:18:37.973289Z

Updated

2024-12-02T09:46:30.58534Z

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