1 2 3 4 5
def print_coordinates(x=0, y=0): print(f"{x=}, {y=}") print_coordinates(x=1, y=2, z=3) # [unexpected-keyword-arg]