while循环与 for循环,函数定义与调用

import turtle
turtle.color('red')
turtle.fillcolor('blue')
turtle.begin_fill()

    turtle.forward(100)
    turtle.right(430)
    if abs(turtle.pos())<1:
        break

turtle.end_fill()
turtle.done()

import turtle
turtle.color('red')
turtle.fillcolor('green')
turtle.begin_fill()

while True:
    turtle.forward(60)
    turtle.right(230)
    if abs(turtle.pos())<1:
        break

turtle.end_fill()
turtle.done()

import turtle
turtle.setup(600,400,0,0)
turtle.bgcolor('red')
turtle.color('yellow')
turtle.fillcolor('yellow')

def mygoto(x,y):
    turtle.penup()
    turtle.goto(x,y)
    turtle.pendown()
    
def draw5jx(r):
    turtle.begin_fill()
    for i in range(5):
        turtle.forward(r)
        turtle.right(144)
    turtle.end_fill()

mygoto(-250,100)
draw5jx(100)

mygoto(-115,165)
draw5jx(35)

mygoto(-75,115)
draw5jx(35)

mygoto(-75,55)
draw5jx(35)

mygoto(-115,5)
draw5jx(35)

turtle.done()

posted @ 2018-05-14 16:45  世界第一稳  阅读(204)  评论(0)    收藏  举报