Quick actions

cmd+k|ctrl+k

Navigation

Languages

2026012801

Snippet info

Language

Python

Visibility

public

Author

shaoronghong15

Created

2026-01-28T13:38:16.886672Z

Updated

2026-01-28T13:38:16.886672Z

def a(x,y,z):
    print(x,y,z)

b = lambda x,y,z: print(x,y,z)
b(1,2,3)
b(4,5,6)
print(type(b),b)
INFO