Design Using Python Turtle


 Source Code

from turtle import*
import turtle
speed(200)
turtle.bgcolor("black")
turtle.begin_fill()
for i in range(23,50):
color("white")
fd(100)
right(45)
fd(100)
right(45)
fd(100)
right(45)
fd(100)
right(45)
for i in range(30):
fd(i)
right(i)

turtle.done()

Comments

Popular posts from this blog

Design Using Python Turtle

Design Using Python Turtle

Design Using Python Turtle