📜  Python中的 turtle.filling()函数

📅  最后修改于: 2022-05-13 01:55:48.126000             🧑  作者: Mango

Python中的 turtle.filling()函数

turtle 模块以面向对象和面向过程的方式提供海龟图形原语。因为它使用 Tkinter 作为底层图形,所以它需要安装一个支持 Tk 的Python版本。

海龟.filling()

此函数用于返回填充状态(如果填充为 True,否则为 False)。它不需要任何论据。

句法 :

turtle.filling()

以下是上述方法的实现以及一些示例:

示例 1:默认值

Python3
# import package
import turtle
  
# check the default 
# filling state
print(turtle.filling())


Python3
# import package
import turtle
  
# begin the fill and check
# the filling state
turtle.begin_fill()
print(turtle.filling())


Python3
# import package
import turtle
  
# begin fill, do something and
# end fill then check filling state
turtle.begin_fill()
turtle.end_fill()
print(turtle.filling())


输出 :

False

示例 2:内部填充

Python3

# import package
import turtle
  
# begin the fill and check
# the filling state
turtle.begin_fill()
print(turtle.filling())

输出 :

True

示例 3:填充后

Python3

# import package
import turtle
  
# begin fill, do something and
# end fill then check filling state
turtle.begin_fill()
turtle.end_fill()
print(turtle.filling())

输出 :

False

在这里,我们可以在程序中的任何位置检查填充状态,并且仅在填充语句中获取 True ,即;在 begin_fill() 方法之后或在 begin_fill() 和 end_fill() 方法之间。