Design Using Python Turtle


 Source Code
import turtle
from turtle import*
speed(500)
turtle.bgcolor("black")
turtle.begin_fill()
for i in range(5,50):
color("blue")
circle(3,75)
circle(2,-35)
circle(-50)
fd(i)
turtle.done()

Comments

Popular posts from this blog

Design Using Python Turtle

Design Using Python Turtle

Design Using Python Turtle