Quick actions

cmd+k|ctrl+k

Navigation

Languages

2-12-2024 am

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-02T06:36:03.026013Z

Updated

2024-12-02T06:36:03.026013Z

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

#www.youtube.com/watch?v=pM9IO3FCULQ 
INFO