turtle.isvisible()
Return True
if the Turtle is shown, False
if it’s hidden.
1 2 3 4 5 6 | >>> turtle.hideturtle() >>> turtle.isvisible() False >>> turtle.showturtle() >>> turtle.isvisible() True |
turtle.isvisible()
Return True
if the Turtle is shown, False
if it’s hidden.
1 2 3 4 5 6 | >>> turtle.hideturtle() >>> turtle.isvisible() False >>> turtle.showturtle() >>> turtle.isvisible() True |
Designed by : w10schools
service@w10schools.com
Please login to continue.