📜  Python中的 turtle.up() 方法

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

Python中的 turtle.up() 方法

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

乌龟.up()

turtle.up() 方法用于将笔从屏幕上拉起。它没有给出移动到另一个位置或方向的图。

turtle.up() or turtle.pu() or turtle.penup()

在这里,可以使用上面写的三个名称调用此方法,即;它有别名:penup |聚氨酯 |向上。此方法不需要参数。

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

示例 1:

Python3
# 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)


Python3
# 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)


输出:

示例 2:

Python3

# 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)

输出: