9 lines
133 B
Python
Executable File
9 lines
133 B
Python
Executable File
import turtle
|
|
|
|
screen = turtle.Screen()
|
|
|
|
def goto_loc(x, y):
|
|
turtle.goto(x, y)
|
|
|
|
|
|
screen.onscreenclick(goto_loc,1) |