11


import turtle
for i in range(10):
    turtle.up()
    turtle.goto(0,-10*i)
    turtle.down()
    turtle.circle(10*i)

 

from turtle import *
fillcolor("yellow")
begin_fill()
while True:
    forward(200)
    right(144)
    if abs(pos())<1:
        break
end_fill()

  

 

import turtle
for i in range(10):
    turtle.up()
    turtle.goto(0,-10*i)
    turtle.down()
    turtle.circle(10*i)

 

posted on 2017-09-14 11:09  09陈雨雨  阅读(96)  评论(0编辑  收藏  举报