Python中的turtle.end_fill()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.end_fill()
该方法用于填充调用begin_fill()后绘制的形状。它不接受任何参数。
语法 :
turtle.end_fill()
下面是上述方法的实现,并附有一个例子:
示例:
# importing package
import turtle
# set turtle position
# and color
turtle.up()
turtle.goto(0,-30)
turtle.down()
turtle.color("yellow")
# start fill block
turtle.begin_fill()
# all instruction within this
# block are filled with turtle
# color as set above
turtle.circle(60)
# end fill block
turtle.end_fill()
# hide the turtle
turtle.hideturtle()
输出 :