机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
陈灏晨
更新时间:
2024-01-29 15:41
浏览:
409次
点赞:
0次
热度:
20
import turtle as t import random as r t.pensize(6) a=['赛罗','雷欧','盖亚','戴拿','迪迦','泽塔','捷德','梦比优斯','欧布','德凯','布莱泽','高斯'] t.speed(0) t.bgcolor('black') for i in range(100): t.penup() t.forward(500) n=r.choice(a) t.pencolor(r.random(),r.random(),r.random()) t.write(n,font=('楷体',10,'normal')) t.left(167)
点赞成功
分享作品
×