Код рисует неправильно

Kem4ik

Новичок
Пользователь
Апр 3, 2023
1
0
1
Код должен рисовать линии к мышке если я её нажимаю
Код:
from turtle import*
def mouse_goto(x,y):
    t.goto(x,y)
def color_red():
   t.color("red")
def color_green():
   t.color("green")
t=Turtle()
scr=t.getscreen()
scr.onscreenclick(mouse_goto)
t.pendown()
scr.listen()
scr.onkey(color_red,"r")
scr.onkey(color_green,"g")
t.penup()
exitonclick()
 

Форум IT Специалистов