机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
打字练习
Microbit
C++
在线答题
积分排行榜
活跃排行榜
网盘
积分
未登录
未登录
登录学习
作者:
陈果
更新时间:
2025-06-01 15:59
浏览:
6次
点赞:
0次
热度:
20
import random import turtle turtle.bgcolor("black") turtle.speed(0) turtle.hideturtle() for i in range(10000): turtle.penup() x=random.randint(-200,300) y=random.randint(-300,300) turtle.goto(x,y) turtle.pendown() turtle.color("red","yellow") turtle.begin_fill() for j in range(5): turtle.forward(20) turtle.left(-144) turtle.end_fill()
点赞成功
分享作品
×