机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
李俊栋
更新时间:
2024-08-06 11:58
浏览:
387次
点赞:
0次
热度:
20
import turtle as t import random as r t.bgcolor("black") t.colormode(255) t.pensize(5) for i in range(100): x=r.randint(-300,300) y=r.randint(-300,300) t.speed(0) t.penup() t.goto(x,y) t.pendown() t.color(r.randint(0,255), r.randint(0,255), r.randint(0,255)) w=r.randint(1,100) t.begin_fill() for j in range(20): t.forward(w) t.left(999) t.end_fill()
点赞成功
分享作品
×