机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
李俊栋
更新时间:
2024-08-07 11:23
浏览:
374次
点赞:
0次
热度:
20
import turtle as t import random as r t.bgcolor("black") a=['red','green','orange','pink','blue'] for i in range(100): b=r.randint(1,3) if b==1: x=r.randint(-300,300) y=r.randint(-300,300) w=r.randint(1,50) t.speed(0) t.penup() t.goto(x,y) t.pendown() t.color(a[i%5]) t.begin_fill() for j in range(5): t.forward(w) t.left(144) t.end_fill() elif b==2: x=r.randint(-300,300) y=r.randint(-300,300) w=r.randint(1,50) t.speed(0) t.penup() t.goto(x,y) t.pendown() t.color(a[i%5]) t.begin_fill() for j in range(4): t.forward(w) t.left(90) t.end_fill() elif b==3: x=r.randint(-300,300) y=r.randint(-300,300) w=r.randint(1,50) t.speed(0) t.penup() t.goto(x,y) t.pendown() t.color(a[i%5]) t.begin_fill() for j in range(3): t.forward(w) t.left(120) t.end_fill()
点赞成功
分享作品
×