玫瑰花

摘要: #玫瑰花 import turtle turtle.fillcolor("red") turtle.begin_fill() turtle.circle(10.10) turtle.circle(20,350) turtle.circle(30,400) turtle.circle(40,400) 阅读全文
posted @ 2018-04-12 11:58 草莓味的大男孩 阅读(175) 评论(0) 推荐(0)

第一次Python作业

摘要: #叠加等边三角形.py import turtle turtle.penup() turtle.fd(-50) turtle.pendown() turtle.pensize(6) turtle.pencolor("black") turtle.seth(60) turtle.fd(300/2) for i in range(2): turtle.right(120) turtl... 阅读全文
posted @ 2018-03-30 22:13 草莓味的大男孩 阅读(362) 评论(0) 推荐(0)