📜  Python中的 turtle.shape()函数

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

Python中的 turtle.shape()函数

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

海龟.形状()

此函数用于将海龟形状设置为具有给定名称的形状,或者,如果未给出名称,则返回当前形状的名称。

句法:

turtle.shape(name=None)

具有名称的形状必须存在于 Turtle Screen 的形状字典中。最初,有以下多边形形状:“箭头”、“乌龟”、“圆形”、“方形”、“三角形”、“经典”。这些图像如下所示。

默认值:“经典”

'箭'

'龟'

'圆圈'

'正方形'

'三角形'

例子:

Python3
# import package
import turtle 
  
  
# for default shape
turtle.forward(100)
  
# for circle shape
turtle.shape("circle")
turtle.right(60)
turtle.forward(100)
  
# for triangle shape
turtle.shape("triangle")
turtle.right(60)
turtle.forward(100)
  
# for square shape
turtle.shape("square")
turtle.right(60)
turtle.forward(100)
  
# for arrow shape
turtle.shape("arrow")
turtle.right(60)
turtle.forward(100)
  
# for turtle shape
turtle.shape("turtle")
turtle.right(60)
turtle.forward(100)


输出: