画一个月饼

  python画月饼,是动画效果的哦!!话不多说上效果图和代码

import turtle

def goto(x,y):
    turtle.penup();
    turtle.goto(x,y);
    turtle.pendown();

def yuan():
    turtle.color('#D1C185','#839F26')
    goto(0,-200);
    turtle.begin_fill();
    turtle.circle(200);
    turtle.end_fill();

def huabian():
    goto(0,0)
    turtle.color('#839F26')
    for _ in range(20):
        turtle.right(18)
        turtle.begin_fill()
        turtle.forward(220)
        turtle.circle(40,180)
        turtle.goto(0,0)
        turtle.right(180)
        turtle.end_fill()

def neitu():
    turtle.color('#D1C185')
    goto(0,-25)
    for _ in range(12):
        turtle.begin_fill();
        turtle.circle(150,60)
        turtle.left(90)
        turtle.circle(150,60)
        turtle.end_fill()

def write():
    goto(-40,10)
    turtle.color("red")
    turtle.write("中秋快乐",font={"Time",18,"bold"})
    turtle.done()

if __name__ == '__main__':
    turtle.speed(10)
    huabian()
    yuan()
    neitu()
    write()

  

猜你喜欢

转载自www.cnblogs.com/AndyLin/p/11542187.html