Python中的turtle.down()方法
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.down()
turtle.down()方法是用来把笔拉回屏幕上的。它在移动到另一个位置或方向时提供绘图。
turtle.down() or turtle.pd() or turtle.pendown()
在这里,这个方法可以用上面写的三个名字来调用,也就是说,它的别名是:pendown | pd | down。这个方法不需要任何参数。
下面是上述方法的实现和一些例子。
示例 1:
# import package
import turtle
# forward the turtle (drawing)
turtle.forward(50)
# up the turtle
turtle.up()
# forward the turtle (no drawing)
turtle.forward(50)
# down the turtle
turtle.down()
# forward the turtle (drawing)
turtle.forward(50)
输出 :
示例 2:
# import package
import turtle
# forward the turtle (drawing)
turtle.forward(50)
# turn right 90 degrees
turtle.right(90)
# up the turtle
turtle.up()
# forward the turtle (no drawing)
turtle.forward(50)
# down the turtle
turtle.down()
# turn right 90 degrees
turtle.right(90)
# forward the turtle (drawing)
turtle.forward(50)
输出 :