python蟒蛇绘制
2020-12-13 14:36
标签:aws raw pytho nec 轨迹 调用函数 移动 调用 tle 1、python对库函数的引用 ①import import turtle turtle.fd(10) #调用函数前需说明 库名.函数() ② from import from import * from turtle import * fd(10) #可直接调用函数 python蟒蛇绘制 标签:aws raw pytho nec 轨迹 调用函数 移动 调用 tle 原文地址:https://www.cnblogs.com/motoharu/p/11558565.html#蟒蛇绘制
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()