DS - 05RP 933524 -
@DSPRINT
My turtle's speed is super slow. And I am doing a cool effect using Python with Turtle, but it takes so long to finish running it.
RYANTADIPARTHI Solution
you need to use speed() with 0. 0 is the fastest.
import turtle
turt = turtle.Turtle()
turt.speed(0)
turt.color("red")
for i in range(4):
turt.forward(100)
turt.left(90)
try that code. It makes a square in turtle quickly.
That should work2 years ago