|  | 
 
| 
import turtle as t
x
马上注册,结交更多好友,享用更多功能^_^您需要 登录 才可以下载或查看,没有账号?立即注册  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()
 
 | 
 |