So here is my problem, I have to make a picture for my CS class and it is really frustrating estimating in turtle. I planed to use .onclick() to show me to position.
Python 3.7 version.
import turtle as t def click(x,y): print('Clicked:', x, y) def main(): s = t.Screen() s.onclick(click) s.mainloop() main()
Note that the printing takes place at the console, not on Turtle.