About 10,600,000 results
Open links in new tab
  1. Is it possible to move to a point without drawing a line using turtle ...

    Apr 23, 2021 · There's only one small bug in your code: simply replace the turtle.clear() with t.clear() to clear the lines made by t specifically: t.fd(100) t.right(90) Also, you can use the …

  2. How to Use turtle.goto() in Python: Examples and Troubleshooting

    Apr 26, 2025 · Moving Without Drawing. import turtle my_turtle = turtle.Turtle() # Move without drawing my_turtle.penup() my_turtle.goto(100, 100) # Start drawing from the new position …

  3. Draw moving object using Turtle in Python - GeeksforGeeks

    Sep 12, 2023 · Turtle is a built-in Python module that provides a simple way to draw and create graphics using a virtual turtle on the screen. You can control the turtle using commands like …

  4. Python Turtle Directions - Bucknell University

    Drawing commands are still executed without the turtle, and lines are still drawn when the turtle is moved. Use up and down to turn drawing on and off, or just use the setx, sety, or goto …

  5. Moving and Rotating Turtle Objects with Python Turtle - unRepo

    How can I make the turtle go to a specific position without drawing? You can use the turtle.goto(x, y) command to move the turtle to the specified coordinates (x, y) without drawing a line. …

  6. 4.8. A Few More turtle Methods and Observations

    Apr 29, 2025 · A turtle’s pen can be picked up or put down. This allows us to move a turtle to a different place without drawing a line. The methods are up and down. Note that the methods …

  7. Python - How to make turtle go to (x,y) position without having it move

    Nov 13, 2017 · The only way to move the turtle somewhere instantaneously (in a single frame) is to disable tracer, which is turtle's internal update loop, and use .update() to trigger a redraw …

  8. How do you move a turtle without drawing it? - The …

    Apr 17, 2025 · So, you want to move a turtle – a digital turtle, that is – without leaving a drawn line in its wake? The secret lies in mastering the art of pen control . In most turtle graphics …

  9. Learn to Code with Turtle: A Super Fun Adventure! - Meganano

    Apr 18, 2025 · With Python and Turtle, we will show you how draw cool shapes, create colorful patterns, and have a blast while you learn to code. ... (no drawing) turtle.forward(50) # Move …

  10. Unleash Your Creativity: Python Turtle Graphics with teleport()

    Apr 26, 2025 · penup()/pendown() is useful for moving the turtle a relative distance without drawing. For simply moving the turtle to a specific coordinate without drawing, turtle.teleport() …