Python中的turtle.addhape()函数
turtle模块以面向对象和面向过程的方式提供Turtle图形基元。因为它使用 Tkinter 作为底层图形,它需要安装一个支持 Tk 的 Python 版本。
turtle.addshape()
这个函数用于在TurtleScreen的形状列表中添加一个Turtle形状。
语法 :
turtle.addshape(name, shape=None)
参数:
参数 | 描述 |
---|---|
名称 | gif文件的名称 |
shape | shape是一个成对的坐标的元组 |
下面是上述方法的实现和一些例子。
例子1 :
# import package
import turtle
# print list of the all
# shapes available
print(turtle.getshapes())
# add shape to the shape list
turtle.addshape(name="gfg.gif",shape=None)
# check the updated shape list
print(turtle.getshapes())
输出 :
[‘箭头’、’空白’、’圆形’、’经典’、’方形’、’三角形’、’Turtle’]
[‘箭头’, ‘空白’, ‘圆圈’, ‘经典’, ‘gfg.gif’, ‘方形’, ‘三角形’, ‘Turtle’]
例子2 :
# import package
import turtle
# add shape to the shape list as above
turtle.addshape(name="gfg.gif",shape=None)
# set turtle with new shape
# and new position
turtle.shape("gfg.gif")
turtle.up()
turtle.setpos(-10,10)
turtle.down()
# loop for motion
for i in range(22):
turtle.fd(40+5*i)
turtle.right(90)
输出 :