Quick actions

cmd+k|ctrl+k

Navigation

Languages

Function inside fun. (2-12-2024)

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-02T03:29:14.099997Z

Updated

2024-12-02T03:53:50.540456Z

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