turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。由于它使用Tkinter作为基础图形,因此需要安装有Tk支持的Python版本。
turtle .clone()
turtle.clone()方法用于创建和返回具有相同位置,标题和 turtle 属性的 turtle 克隆。此方法不需要任何参数。
用法:
turtle.clone()
下面是上述方法的实现,并以两种方式提供示例,以使您更好地理解:
范例1:没有克隆
Python3
# import package
import turtle
# make first turtle object
tur1=turtle.Turtle()
# set turtle properties
tur1.width(5)
tur1.color("red")
# move it
tur1.circle(50)
# make another turtle object
tur2=turtle.Turtle()
# move it
tur2.circle(-50)
输出:
范例2:与克隆
Python3
# import package
import turtle
# make first turtle object
tur1=turtle.Turtle()
# set turtle properties
tur1.width(5)
tur1.color("red")
# move it
tur1.circle(50)
# make another turtle object
tur2=turtle.Turtle()
# cloning the properties of
# first turtle object
tur2 = tur1.clone()
# move it
tur2.circle(-50)
输出:
在这里我们可以发现,在第一个输出中,第二个 turtle (tur2)与第一个 turtle (tur1)没有任何属性。为此,我们必须再次设置这些属性。但是turtle.clone()方法具有将一个 turtle 对象的属性克隆到另一个 turtle 对象的优势,正如我们在第二个输出中看到的那样。
相关用法
- Python Wand function()用法及代码示例
- Python ord()用法及代码示例
- Python int()用法及代码示例
- Python dir()用法及代码示例
- Python map()用法及代码示例
- Python sum()用法及代码示例
- Python cmp()用法及代码示例
- Python str()用法及代码示例
- Python tell()用法及代码示例
- Python now()用法及代码示例
- Python oct()用法及代码示例
- Python hex()用法及代码示例
- Python id()用法及代码示例
- Python numpy.ma.where()用法及代码示例
- Python property()用法及代码示例
- Python type()用法及代码示例
- Python range()用法及代码示例
注:本文由纯净天空筛选整理自deepanshu_rustagi大神的英文原创作品 turtle.clone() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。