Design on February 11, 2023 Get link Facebook X Pinterest Email Other Apps import turtle as tfrom turtle import *t.bgcolor('black')t.speed(0)t.hideturtle()for i in range(120): t.color('red') t.circle(i) t.color('orange') t.circle(i*0.8) t.right(3) t.forward(3)t.done() Comments
Comments
Post a Comment