penny12
penny12

Reputation: 57

How do I hide something a turtle drew previously?

I used turtle.write to write something on the screen. How do I hide it completely. Not the turtle icon thing, but what's written.

Upvotes: 3

Views: 119

Answers (1)

Tanner Dolby
Tanner Dolby

Reputation: 4421

@penny12 use turtle.clear() to hide text created with turtle.write()

Upvotes: 2

Related Questions