摘要: from turtle import * import time setup(600,800,10,10) speed(50) penup() pencolor('green') seth(90) fd(200) seth(180) fd(-20) seth(0) pendown() speed(100) begin_fill() fillcolor('red') circle(4... 阅读全文
posted @ 2018-04-10 21:15 火蓝い心 阅读(157) 评论(0) 推荐(0)
摘要: #e绘制叠加等边三角形 import turtle turtle.setup(650,350,200,200) turtle.pensize(3) turtle.pencolor("green") for i in(0,-120,120,60,-60,-60,180,180,60): turtle. 阅读全文
posted @ 2018-03-26 16:37 火蓝い心 阅读(154) 评论(0) 推荐(0)