Quick actions

cmd+k|ctrl+k

Navigation

Languages

2-12-2024 pm (dict)

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-02T08:01:09.847923Z

Updated

2024-12-02T08:11:33.827411Z

def a(w):
    h=w["x"]+ w["y"]+w["z"]
    print("I am from function a", w["x"], w["y"], w["z"])
    
x=1
y=2
z=3
w={"x":1,"y":2,"z":3} #tuple
a(w)
INFO