import time from turtle import * from random import randint import math def draw1(): bgcolor('black') x = 1 while x<400: r = randint(0,255) g = randint(0,255) b = randint(0,255) colormode(255) pencolor(r,g,b) fd(50 + x) rt(90.911) x = x+1 exitonclick() draw1()
特效收集彩色螺旋
于 2024-07-20 21:51:45 首次发布