Python中的turtle.isdown()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.isdown()
该方法用于检查Turtle是否处于下降状态。它不需要任何参数,并返回一个布尔值,如果笔是向下的,则为真,如果是向上的,则为假。
语法 :
turtle.isdown()
下面是上述方法的实现:
# 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