Quick actions

cmd+k|ctrl+k

Navigation

Languages

5-13

Snippet info

Language

Python

Visibility

public

Author

dnf668

Created

2025-05-13T07:26:16.849114Z

Updated

2025-05-13T07:26:16.849114Z

def a(x):
    print("function a",x)
a(1)

def a(x=1):
    print(x)
a()

def a(x, y ,z):
    print("function a", x)
# better arrange all assignment at the end
# eg. def a(x, y, z=1)
INFO