python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > Python turtle.shape()用法

Python turtle.shape()用法及实战案例

作者:宇龙神

turtle是Python自带的一个小型的绘图库,它可以帮助我们快速地绘制简单的图形,这篇文章主要给大家介绍了关于Python turtle.shape()用法及实战案例的相关资料,需要的朋友可以参考下

前言

turtle 模块以面向对象和面向过程的方式提供 turtle 图形基元。

由于它使用tkinter作为基础图形,因此需要安装有Tk支持的Python版本。

Python3默认带有turtle和tkinter 库,可以直接使用不需要另外安装

turtle .shape()

在turtle中默认的鼠标形状 可以使用shape()方法来更改他的形状,它总共有以下五种形状:

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

用法:

turtle.shape(name=None)

带有名称的形状必须存在于Turtle Screen的形状字典中。最初有以下多边形形状:“arrow”,“turtle”,“circle”,“square”,“triangle”,“classic”。这些图像如下所示。

默认值:‘classic’

默认形状:classic

‘arrow’:

arrow

‘turtle’:

turtle

‘circle’:

circle

‘square’:

square

‘triangle’:

triangle

案例

# 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)

效果图

运行效果图

总结 

到此这篇关于Python turtle.shape()用法的文章就介绍到这了,更多相关Python turtle.shape()用法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文