Turtle in python- Trying to get the turtle to move to the mouse click position and print its coordinates

30,639

You are looking for onscreenclick(). It is a method of TurtleScreen. The onclick() method of a Turtle refers to mouse clicks on the turtle itself. Confusingly, the onclick() method of TurtleScreen is the same thing as its onscreenclick() method.

24.5.4.3. Using screen events

turtle.onclick(fun, btn=1, add=None)
turtle.onscreenclick(fun, btn=1, add=None)

Parameters:

  • fun – a function with two arguments which will be called with the coordinates of the clicked point on the canvas
  • num – number of the mouse-button, defaults to 1 (left mouse button)
  • addTrue or False – if True, a new binding will be added, otherwise it will replace a former binding

Bind fun to mouse-click events on this screen. If fun is None, existing bindings are removed.

Example for a TurtleScreen instance named screen and a Turtle instance named turtle:

>>> screen.onclick(turtle.goto) # Subsequently clicking into the TurtleScreen will
>>>                             # make the turtle move to the clicked point.
>>> screen.onclick(None)        # remove event binding again

Note: This TurtleScreen method is available as a global function only under the name onscreenclick. The global function onclick is another one derived from the Turtle method onclick.

Cutting to the quick...

So, just invoke the method of screen and not turtle. It is as simple as changing it to:

screen.onscreenclick(turtle.goto)

If you had typed turtle.onclick(lambda x, y: fd(100)) (or something like that) you would probably have seen the turtle move forward when you clicked on it. With goto as the fun argument, you would see the turtle go to... its own location.

Printing every time you move

If you want to print every time you move, you should define your own function which will do that as well as tell the turtle to go somewhere. I think this will work because turtle is a singleton.

def gotoandprint(x, y):
    gotoresult = turtle.goto(x, y)
    print(turtle.xcor(), turtle.ycor())
    return gotoresult

screen.onscreenclick(gotoandprint)

If turtle.goto() returns None (I wouldn't know), then you can actually do this:

screen.onscreenclick(lambda x, y: turtle.goto(x, y) or print(turtle.xcor(), turtle.ycor())

Let me know if this works. I don't have tk on my computer so I can't test this.

Share:
30,639
Jacqlyn
Author by

Jacqlyn

Hello! I started Evil r Us because I was tired of the constant harassment that everyone faces on social media platforms from a small group. I decided to treat trolling like the spam problem it is and started imposing punishments on my social media platform for harassment and bullying. Making consequences for trolling greatly reduced trolling on the platform (surprise, right?). If you would like to donate, see our code, or contribute or contact us in any way about our products, please head to our website.

Updated on July 26, 2020

Comments

  • Jacqlyn
    Jacqlyn almost 4 years

    I'm trying to get the mouse position through Python turtle. Everything works except that I cannot get the turtle to jump to the position of the mouse click.

    import turtle
    
    def startmap(): #the next methods pertain to drawing the map
       screen.bgcolor("#101010")
       screen.title("Welcome, Commadore.")
       screen.setup(1000,600,1,-1)
       screen.setworldcoordinates(0,600,1000,0)
       drawcontinents()    #draws a bunch of stuff, works as it should but not really important to the question
       turtle.pu()
       turtle.onclick(turtle.goto)
       print(turtle.xcor(),turtle.ycor())
       screen.listen()
    

    As I understand, the line that says 'turtle.onclick(turtle.goto)' should send the turtle to wherever I click the mouse, but it does not. The print line is a test, but it only ever returns the position that I sent the turtle last, nominally (0, 650) although this does not have major significance.

    I tried looking up tutorials and in the pydoc, but so far I have not been able to write this successfully.

    I appreciate your help. Thank you.

    Edit: I need the turtle to go to the click position(done) but I also need it to print the coordinates.