Quick actions

cmd+k|ctrl+k

Navigation

Languages

Function calls and globals

Snippet info

Language

Python

Visibility

public

Author

kelvino

Created

2025-05-02T04:39:04.72734Z

Updated

2025-05-16T15:25:58.529923Z

def b(): 
    print ("I am from function b")
    return 1
    
def a(i,j):
    x= i
    y=j
    z = x+ y
    print(z)
a(b()+b(),3)
print (globals())
INFO