画一个五星红旗

复制代码
import turtle
turtle.fillcolor("yellow")
turtle.bgcolor("red")
turtle.color("yellow")
#大星星
turtle.up()
turtle.goto(-600,200)
turtle.begin_fill()
for i in range(5):
    turtle.forward(200)
    turtle.right(144)
turtle.end_fill()

#第一颗小星星
turtle.up()
turtle.goto(-300,300)
turtle.begin_fill()
turtle.left(30)
for i in range(5):
    turtle.forward(45)
    turtle.right(144)
turtle.end_fill()

#第二颗小星星
turtle.up()
turtle.goto(-260,220)
turtle.begin_fill()
turtle.left(12)
for i in range(5):
    turtle.forward(45)
    turtle.right(144)
turtle.end_fill()

#第三颗小星星
turtle.up()
turtle.goto(-200,130)
turtle.begin_fill()
turtle.left(170)
for i in range(5):
    turtle.forward(45)
    turtle.right(144)
turtle.end_fill()

#第三颗小星星
turtle.up()
turtle.goto(-300,30)
turtle.begin_fill()
turtle.left(170)
for i in range(5):
    turtle.forward(45)
    turtle.right(144)
turtle.end_fill()
复制代码

效果如下:

 

posted on   01-李嘉秀  阅读(306)  评论(0编辑  收藏  举报

< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

导航

统计

点击右上角即可分享
微信分享提示