用法:
turtle.shape(name=None)
name- 一个字符串,它是一个有效的 shapename
参数:
将 turtle 形状设置为具有给定
name
的形状,或者,如果未给出名称,则返回当前形状的名称。带有name
的形状必须存在于 TurtleScreen 的形状字典中。最初有以下多边形形状:“arrow”, “turtle”, “circle”, “square”, “triangle”, “classic”。要了解如何处理形状,请参阅 Screen 方法register_shape()
。>>> turtle.shape() 'classic' >>> turtle.shape("turtle") >>> turtle.shape() 'turtle'
相关用法
- Python turtle.shapesize用法及代码示例
- Python turtle.shape()用法及代码示例
- Python turtle.shapetransform()用法及代码示例
- Python turtle.shapetransform用法及代码示例
- Python turtle.showturtle()用法及代码示例
- Python turtle.shearfactor()用法及代码示例
- Python turtle.shearfactor用法及代码示例
- Python turtle.speed()用法及代码示例
- Python turtle.setworldcoordinates()用法及代码示例
- Python turtle.setx()用法及代码示例
- Python turtle.settiltangle()用法及代码示例
- Python turtle.screensize用法及代码示例
- Python turtle.setup用法及代码示例
- Python turtle.sety用法及代码示例
- Python turtle.speed用法及代码示例
- Python turtle.settiltangle用法及代码示例
- Python turtle.stamp用法及代码示例
- Python turtle.setundobuffer()用法及代码示例
- Python turtle.stamp()用法及代码示例
- Python turtle.setx用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 turtle.shape。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。