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.
You have to get first the screen object the turtle is drawing on and then call onclick() of the screen object. Here is an example:
import turtle as t def getPos(x,y): print("(", x, "," ,y,")") return def main(): s = t.getscreen() s.onclick(getPos) t.mainloop() main()