用Python制作一面国旗

import turtle

turtle.up()  #移动时不绘制图形
turtle.goto(-200, 200)
turtle.down() #移动时绘制图形,缺省时也为绘制
turtle.begin_fill() #开始填充
turtle.fillcolor("red") #填充的颜色:红色
turtle.pencolor("red") #画笔颜色
for i in range(2):
    turtle.forward(280)
    turtle.right(90)
    turtle.forward(200)
    turtle.right(90)
turtle.end_fill() #结束填充

turtle.up()
turtle.goto(-170, 145)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
    turtle.forward(50)
    turtle.right(144)
turtle.end_fill()

turtle.up()
turtle.goto(-100, 180)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
    turtle.forward(20)
    turtle.right(144)
turtle.end_fill()

turtle.up()
turtle.goto(-70, 160)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
    turtle.forward(20)
    turtle.right(144)
turtle.end_fill()

turtle.up()
turtle.goto(-70, 120)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
    turtle.forward(20)
    turtle.right(144)
turtle.end_fill()

turtle.up()
turtle.goto(-100, 100)
turtle.down()
turtle.begin_fill()
turtle.fillcolor("yellow")
turtle.pencolor("yellow")
for x in range(5):
    turtle.forward(20)
    turtle.right(144)
turtle.end_fill()

turtle.hideturtle()  # 隐藏小海龟
# 维持面板
turtle.done()

效果如下:
用Python制作一面国旗_第1张图片

你可能感兴趣的:(python)