Subscribe our channel to get latest Tech updates !

Yuvi's Tech Point
  • Home
  • About Me
  • Contact Us
  • YouTube
  • Source Code
  • Websites
    • Another Site
    • Personal Profile
  • More
    • Home
    • About Me
    • Contact Us
    • YouTube
    • Source Code
    • Websites
      • Another Site
      • Personal Profile
Yuvi's Tech Point
  • Home
  • About Me
  • Contact Us
  • YouTube
  • Source Code
  • Websites
    • Another Site
    • Personal Profile

Python turtle graphics coding

Python (India Flag) Source Code

#import turtle

import turtle

from turtle import *


# screen for output

screen = turtle.Screen()

# Defining a turtle Instance

t = turtle.Turtle()

speed(1)


# initially penup()

t.penup()

t.goto(-200, 125)

t.pendown()

# Orange Rectangle

#white rectangle

t.color("orange")

t.begin_fill()

t.forward(400)

t.right(90)

t.forward(84)

t.right(90)

t.forward(400)

t.end_fill()

t.left(90)

t.forward(84)


# Green Rectangle

t.color("green")

t.begin_fill()

t.forward(84)

t.left(90)

t.forward(400)

t.left(90)

t.forward(84)

t.end_fill()


# Big Blue Circle

t.penup()

t.goto(35, 0)

t.pendown()

t.color("navy")

t.begin_fill()

t.circle(35)

t.end_fill()


# Big White Circle

t.penup()

t.goto(30, 0)

t.pendown()

t.color("white")

t.begin_fill()

t.circle(30)

t.end_fill()


#Mini Blue Circles of Flag

t.penup()

t.goto(-27, -4)

t.pendown()

t.color("navy")

for i in range(24):

    t.begin_fill()

    t.circle(2)

    t.end_fill()

    t.penup()

    t.forward(7)

    t.right(15)

    t.pendown()


# Small Blue Circle

t.color("navy")

t.penup()

t.goto(10, 0)

t.pendown()

t.begin_fill()

t.circle(10)

t.end_fill()


#The spokes of India Flag

t.penup()

t.goto(0, 0)

t.pendown()

t.pensize(1)

for i in range(24):

    t.forward(30)

    t.backward(30)

    t.left(15)


#for stick of the flag

t.color("Brown")

t.pensize(10)

t.penup()

t.goto(-200,125)

t.right(180)

t.pendown()

t.forward(800)


#to hold the

#output window

turtle.done

Find out more
  • About Me
  • Another Site

Yuvi's Tech Point

Copyright © 2023 Yuvi's Tech Point - All Rights Reserved.

Powered by

Subscribe

Welcome! Check out my new Website and quickly go and subscribe to my Channel

Subscribe