赞
踩
import turtle as t#代入turle把它转换为t更加方便使用 t.speed(0) t.fillcolor('yellow')#fillcolor使用颜色 t.penup() t.goto(-300,200) t.pendown() t.begin_fill()#开始填充 for a in range(5): t.forward(80)#直线 t.left(72)#左转 t.forward(80) t.right(144)#右转 t.end_fill()#结束填充 t.fillcolor('yellow') t.penup() t.goto(-50, 260) t.pendown() t.begin_fill() t.right(30) for a in range(5):#利用for循环使图像画五笔,可以方便并简介代码 t.forward(20) t.left(72) t.forward(20) t.right(144) t.end_fill() t.fillcolor('yellow') t.penup() t.goto(0, 200) t.pendown() t.begin_fill() for a in range(5): t.forward(20) t.left(72) t.forward(20) t.right(144) t.end_fill() t.fillcolor('yellow') t.penup() t.goto(0, 100) t.pendown() t.begin_fill() t.left(30) for a in range(5): t.forward(20) t.left(72) t.forward(20) t.right(144) t.end_fill() t.fillcolor('yellow') t.penup() t.goto(-55, 50) t.pendown() t.begin_fill() t.right(30) for a in range(5): t.forward(20) t.left(72) t.forward(20) t.right(144) t.end_fill() t.bgcolor("red") t.exitonclick()#此代码可以使程序运行完,不会直接退出。
希望大家能巧妙的运用turtle的函数,制作出更多有趣的图像
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。