📜  Python中的 turtle.isdown()函数

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

Python中的 turtle.isdown()函数

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

海龟.isdown()

该方法用于检查海龟是否倒地。它不需要任何参数,如果笔向下,则返回布尔值 True,如果笔向上,则返回 False。

句法 :

turtle.isdown()

下面是上述方法的实现:

Python3
# import package
import turtle 
  
  
# to check
print(turtle.isdown())
turtle.forward(10)
  
# up the turtle
turtle.up()
  
# to check
print(turtle.isdown())
  
# up the turtle
turtle.down()
turtle.forward(10)
  
# to check
print(turtle.isdown())


输出 :

True
False
True