摘要: stuNum = '201709080026' import turtle turtle.bgcolor("red") turtle.fillcolor("yellow") turtle.color('yellow') turtle.speed(10) turtle.begin_fill() turtle.up() turtle.goto(-600,220) turtle.down()... 阅读全文
posted @ 2018-05-16 23:03 木木dududu 阅读(177) 评论(0) 推荐(0)
摘要: import turtle turtle.bgcolor("red") turtle.fillcolor("yellow") turtle.color('yellow') turtle.speed(10) turtle.begin_fill() turtle.up() turtle.goto(-60 阅读全文
posted @ 2018-05-16 20:20 木木dududu 阅读(64) 评论(0) 推荐(0)
摘要: import turtle # 设置初始位置 turtle.penup() turtle.left(90) turtle.fd(200) turtle.pendown() turtle.right(90) # 花蕊 turtle.fillcolor("red") turtle.begin_fill() turtle.circle(10, 180) turtle.circle(25, 110)... 阅读全文
posted @ 2018-05-16 20:01 木木dududu 阅读(210) 评论(0) 推荐(0)