机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
毛皓琦
更新时间:
2024-08-09 11:17
浏览:
378次
点赞:
0次
热度:
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()
点赞成功
分享作品
×