when trying to return the position, python says it is missing mx and my, but when I add them, it says they are not defined
import turtle
def get_mouse_click_coor(mx, my):
print(mx, my)
turtle.onscreenclick(get_mouse_click_coor)
turtle.mainloop()