python蟒蛇绘制
Posted kuluma
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python蟒蛇绘制相关的知识,希望对你有一定的参考价值。
#蟒蛇绘制 import turtle #图像绘制库 def drawSnack(rad,angle,len,neckrad): #定义函数 for i in range(len): turtle.circle(rad,angle) #弧形移动位置和弧度 turtle.circle(-rad,angle) turtle.circle(rad,angle/2) turtle.fd(rad) #直线移动距离 turtle.circle(neckrad+1 , 180) turtle.fd(rad*2/3) def main(): turtle.setup(1300,800,0,0) #启动一个1300*800的窗口 pythonsize = 30 turtle.pensize(pythonsize) #运行轨迹的宽度 turtle.pencolor(‘blue‘) #运行轨迹的颜色 turtle.seth(-40) #运行的方向 drawSnack(40,80,5,pythonsize/2) main()
1、python对库函数的引用
①import <库名>
import turtle
turtle.fd(10) #调用函数前需说明 库名.函数()
② from <库名> import <函数名>
from <库名> import *
from turtle import *
fd(10) #可直接调用函数
以上是关于python蟒蛇绘制的主要内容,如果未能解决你的问题,请参考以下文章
Python课本第2章习题参考答案(第二版)(Python绘制蟒蛇,中美汇率转换,等边三角形,叠加等边三角形,无角正方形,六角形,正方形螺线)