摘要: from turtle import *#import turtle penup() left(90) fd(200) pendown() right(90) fillcolor("red") begin_fill() circle(20,180) circle(35,110) left(50) c 阅读全文
posted @ 2018-04-14 00:17 毒瘾=生活 阅读(119) 评论(0) 推荐(0)
摘要: from turtle import *#import turtle # 设置初始位置 penup() left(90) fd(200) pendown() right(90) # 花蕊 fillcolor("red") begin_fill() circle(10,180) circle(25,1 阅读全文
posted @ 2018-04-13 12:56 毒瘾=生活 阅读(135) 评论(0) 推荐(0)
摘要: 25题代码:import turtle turtle.setup(700,500,200,200) turtle.fd(150) turtle.seth(120) turtle.fd(150) turtle.seth(-120) turtle.fd(300) turtle.seth(0) turtle.fd(300) turtle.seth(120) turtle.fd(150) turtle.... 阅读全文
posted @ 2018-03-22 17:47 毒瘾=生活 阅读(127) 评论(0) 推荐(0)