机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
打字练习
Microbit
C++
在线答题
积分排行榜
活跃排行榜
网盘
积分
未登录
未登录
登录学习
作者:
伊沫冰
更新时间:
2025-04-25 19:04
浏览:
4次
点赞:
0次
热度:
20
import turtle as t import random t.setup(800,600) t.speed(7) t.pensize(5) t.fillcolor('yellow') for i in range(5): x=random.randint(-250,150) y=random.randint(-150,150) t.penup() t.goto(x,y) t.pendown() t.begin_fill() a=random.randint(10,150) for i in range(5): t.forward(a) t.left(144) t.end_fill()
点赞成功
分享作品
×