函数定义与使用

 
 
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()

猜你喜欢

转载自www.cnblogs.com/rouxi/p/9047910.html