机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
徐楷晰
更新时间:
2024-08-06 11:50
浏览:
362次
点赞:
0次
热度:
20
import random as r import turtle as t t.speed(0) t.pensize(5) t.bgcolor('black') t.pencolor('white') t.colormode(255) for i in range(50): x=r.randint(-300,300) y=r.randint(-300,300) t.penup() t.goto(x,y) t.pendown() t.pencolor(r.randint(0,255),r.randint(0,255),r.randint(0,255)) w=r.randint(-10,30) for j in range(3): t.forward(w) t.left(120) t.hideturtle()
点赞成功
分享作品
×