0

is there some kind of method to refresh the turtle screen while keeping the turtle drawings and the pen having the same attributes, it's kind of like reloading a page but it still has the same content

Curry boy
  • 1
  • 1
  • 1
    Possible duplicate of: https://stackoverflow.com/questions/34033701/python-how-to-reset-the-turtle-graphics-window – DialFrost Dec 20 '21 at 03:23

1 Answers1

0

There is a way to do that and you can do it by:

t = turtle.Turtle()
t.clear()
AABULUT
  • 50
  • 4