Quick actions

cmd+k|ctrl+k

Navigation

Languages

Dictionary

Snippet info

Language

Python

Visibility

public

Author

hohim4095

Created

2024-10-03T13:38:08.147766Z

Updated

2024-10-03T13:38:08.147766Z

def y():
    print("this is function y")
x={"a":1,"b":2,"c":y}
print(x["c"]())
INFO