from click import style
# screen for output
screen = turtle.Screen()
# Defining a turtle Instance
timmy = turtle.Turtle()
speed(200)
# initially penup()
screen.setup(height=500, width=800)
timmy.penup()
timmy.goto(-400, 250)
timmy.pendown()
# Orange Rectangle
# white rectangle
timmy.color("orange")
timmy.begin_fill()
timmy.forward(800)
timmy.right(90)
timmy.forward(167)
timmy.right(90)
timmy.forward(800)
timmy.end_fill()
timmy.left(90)
timmy.forward(167)
# Green Rectangle
timmy.color("green")
timmy.begin_fill()
timmy.forward(167)
timmy.left(90)
timmy.forward(800)
timmy.left(90)
timmy.forward(167)
timmy.end_fill()
# Big Blue Circle
timmy.penup()
timmy.goto(70, 0)
timmy.pendown()
timmy.color("navy")
timmy.begin_fill()
timmy.circle(70)
timmy.end_fill()
# Big White Circle
timmy.penup()
timmy.goto(60, 0)
timmy.pendown()
timmy.color("white")
timmy.begin_fill()
timmy.circle(60)
timmy.end_fill()
# Mini Blue Circles
timmy.penup()
timmy.goto(-57, -8)
timmy.pendown()
timmy.color("navy")
for _ in range(24):
timmy.begin_fill()
timmy.circle(3)
timmy.end_fill()
timmy.penup()
timmy.forward(15)
timmy.right(15)
timmy.pendown()
# Small Blue Circle
timmy.penup()
timmy.goto(20, 0)
timmy.pendown()
timmy.begin_fill()
timmy.circle(20)
timmy.end_fill()
# Spokes
timmy.penup()
timmy.goto(0, 0)
timmy.pendown()
timmy.pensize(2)
for _ in range(24):
timmy.forward(60)
timmy.backward(60)
timmy.left(15)
# for display text
timmy.penup()
timmy.pencolor("Indigo")
timmy.goto(-320, -300)
timmy.hideturtle()
timmy.write("my heatriest greetings to all of you in india and on the eve of 73rd Republic day", font=('Calibri',16,'bold'))
timmy.penup()
timmy.pencolor("black")
timmy.goto(500,-300)
timmy.hideturtle()
timmy.write("by @ sangram panda" ,font=('calibari',10))
# to hold the
# output window
turtle.done()
0 Comments