当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python turtle.up()用法及代码示例


turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。

turtle .up()

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

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

这里,可以用上面写的三个名称来调用该方法,即:它具有Aliases:penup | pu |向上。此方法不需要任何参数。

下面是上述方法的实现和一些示例:

范例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)

输出:

范例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)

输出:




相关用法


注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.up() method in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。