Quick actions

cmd+k|ctrl+k

Navigation

Languages

*Arg

Snippet info

Language

Python

Visibility

public

Author

chausage

Created

2024-12-06T08:09:45.912626Z

Updated

2024-12-06T08:09:45.912626Z

def a(x,z,y=2):
    print("a={1}, b={0}, c={2}".format(x,y,z))
    
a(1,z=3, y=6)
INFO