How to get turtle graphics to not show turtle while its being drawn?

11,321

You need to hide the turtle:

turtle.hideturtle()

And then set the speed to fastest:

turtle.speed(0)
Share:
11,321
penguin12
Author by

penguin12

Updated on June 07, 2022

Comments

  • penguin12
    penguin12 almost 2 years

    How do I get the final drawing to display without having to show the process of drawing? I am using Python 3.4, and this project is to create an archery game. For example, if I use the following code:

    import turtle
    screen = turtle.Screen()
    turtle.circle(10)
    

    A circle with a radius of ten is drawn with an arrow, but I just want a circle shape without seeing it being drawn.