jianghongz 发表于 2023-10-13 10:30:07

turtle五星红旗

import turtle as t
t.setup(600,400)
t.bgcolor("red")

t.penup()
t.goto(-260,120)
t.pendown()
t.color("yellow")
t.begin_fill()
for i in range(5):
   t.fd(120)
   t.rt(144)
t.end_fill()

t.penup()
t.goto(-120,160)
t.pendown()
t.setheading(t.towards(-200,100)+180)
t.color("yellow")
t.begin_fill()
for i in range(5):
   t.fd(40)
   t.rt(144)
t.end_fill()

t.penup()
t.goto(-80,120)
t.pendown()
t.setheading(t.towards(-200,100)+180)
t.color("yellow")
t.begin_fill()
for i in range(5):
   t.fd(40)
   t.rt(144)
t.end_fill()

t.penup()
t.goto(-80,60)
t.pendown()
t.setheading(t.towards(-200,100)+180)
t.color("yellow")
t.begin_fill()
for i in range(5):
   t.fd(40)
   t.rt(144)
t.end_fill()

t.penup()
t.goto(-120,20)
t.pendown()
t.setheading(t.towards(-200,100)+180)
t.color("yellow")
t.begin_fill()
for i in range(5):
   t.fd(40)
   t.rt(144)
t.end_fill()

t.hideturtle()
t.done()
页: [1]
查看完整版本: turtle五星红旗