Python内置turtle海龟库函数讲解 4

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python内置turtle海龟库函数讲解 4相关的知识,希望对你有一定的参考价值。

参考技术A

一、海龟状态函数

1、显示海龟

showturtle()或st()

无参数直接调用

2、隐藏海龟

hideturtle()或ht()

无参数直接调用

3、返回海龟的状态(True或False)

isvisible()

无参数直接调用

二、外观函数

1、改变海龟的外形或返回当前海龟形状

shape(name)

默认的参数是:"arrow", "turtle", "circle", "square", "triangle", "classic"。

2、设置海龟尺寸模式

resizemode(rmode)

参数:默认值("auto", "user", "noresize")

3、调整海龟的大小或返回当前大小参数值

shapesize(wid,len,outline)或turtle.sieze(wid,len,outline)

参数 wid 正数 len 正数 outline正数

4、设置或返回当前的剪切因子

shearfactor()

参数: shear 实数

5、设置倾角

settiltangle(angle)

参数:angle角度和海龟朝向不同

6、设置海龟与朝向的夹角

tilt(angle)

以上是关于Python内置turtle海龟库函数讲解 4的主要内容,如果未能解决你的问题,请参考以下文章

Python内置turtle海龟库函数讲解1

Python内置好玩的turtle(海龟库)

Python的turtle库有啥用

Python海龟turtle基础知识大全与画图集合

python课程设计笔记turtle绘图库(海龟库)

求教python中的turtle