玫瑰

摘要: from turtle import * penup() left(90) fd(200) pendown() right(90) # 花 fillcolor("red") begin_fill() circle(10,180) circle(25,110) left(50) circle(60,45) circle(20,170) right(... 阅读全文
posted @ 2018-04-14 13:59 韩浩然 阅读(173) 评论(0) 推荐(0)

第一次作业

摘要: import turtle turtle.setup(1000,600,100,100) turtle.seth(0) turtle.fd(100) turtle.seth(-60) turtle.fd(100) turtle.seth(-120) turtle.fd(100) turtle.seth(180) turtle.fd(100) turtle.seth(120) turtle.fd(... 阅读全文
posted @ 2018-03-28 20:05 韩浩然 阅读(375) 评论(0) 推荐(0)