机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
打字练习
Microbit
C++
在线答题
积分排行榜
活跃排行榜
网盘
积分
未登录
未登录
登录学习
作者:
陈果
更新时间:
2025-06-15 10:55
浏览:
21次
点赞:
1次
热度:
20
import turtle as t t.speed(0) t.hideturtle() t.penup() t.goto(-180,120) t.pendown() t.color("red") t.begin_fill() for i in range(2): t.forward(360) t.right(90) t.forward(240) t.right(90) t.end_fill() t.penup() t.goto(-160,62) t.pendown() t.color("Yellow") t.begin_fill() for j in range(5): t.forward(72) t.right(144) t.end_fill() t.penup() t.goto(-72,90) t.pendown() t.setheading(45) t.color("Yellow") t.begin_fill() for j in range(5): t.forward(24) t.right(144) t.end_fill() t.penup() t.goto(-48,68) t.pendown() t.setheading(15) t.color("Yellow") t.begin_fill() for j in range(5): t.forward(24) t.right(144) t.end_fill() t.penup() t.goto(-48,40) t.pendown() t.setheading(-15) t.color("Yellow") t.begin_fill() for j in range(5): t.forward(24) t.right(144) t.end_fill() t.penup() t.goto(-72,20) t.pendown() t.setheading(-45) t.color("Yellow") t.begin_fill() for j in range(5): t.forward(24) t.right(144) t.end_fill()
点赞成功
分享作品
×