turtle.end_fill()
Fill the shape drawn after the last call to begin_fill()
.
>>> turtle.color("black", "red") >>> turtle.begin_fill() >>> turtle.circle(80) >>> turtle.end_fill()
turtle.end_fill()
Fill the shape drawn after the last call to begin_fill()
.
>>> turtle.color("black", "red") >>> turtle.begin_fill() >>> turtle.circle(80) >>> turtle.end_fill()
Please login to continue.