摘要: from turtle import * import time setup(600,800,0,0) speed(0) penup() seth(90) fd(340) seth(0) pendown() speed(5) begin_fill() fillcolor('red') circle(50,30) for i in range(10): fd(1) le... 阅读全文
posted @ 2018-04-11 19:29 灿灿程序员 阅读(120) 评论(0) 推荐(0)
摘要: 2.5 import turtle turtle.setup(650,350,200,200) turtle.penup() turtle.fd(-120) turtle.pendown() turtle.pensize(6) turtle.pencolor("green") turtle.seth(-120) turtle.fd(120) turtle.seth(0) turtle.fd(1... 阅读全文
posted @ 2018-04-03 17:30 灿灿程序员 阅读(169) 评论(0) 推荐(0)