Design Using Python Turtle


 Source Code

from turtle import *
speed(200)
tracer(10)
width(2)
bgcolor("black")
for i in range(0,60):
color("White")
fd(i)
right(90)
fd(i)
right(90)
fd(i)
right(60)
fd(i)
right(90)
fd(i)
fd(40)
bk(i)
done()

Comments

Popular posts from this blog

Design Using Python Turtle

Design Using Python Turtle

Design Using Python Turtle