Quick actions

cmd+k|ctrl+k

Navigation

Languages

argument

Snippet info

Language

Python

Visibility

public

Author

dnf668

Created

2025-05-13T08:31:32.084202Z

Updated

2025-05-13T09:11:14.697554Z

def a(*arg, **kwarg):
    print(arg, kwarg)
a(2,4,z=1,y=2,x=3)
# * or** 
#arg and kwarg are just variable
INFO