Design Using Python Turtle
Source Code
from turtle import *
speed(500)
bgcolor("black")
begin_fill()
goto(-20,0)
for i in range(100):
color("orange")
color("red")
circle(i,145)
right(90)
circle(16, 15, 65)
left(90)
circle(27, 24, 65)
right(60)
rt(30)
done()
Comments
Post a Comment