Cover Image for Draw Great Indian Flag using Python Code
120 views

Draw Great Indian Flag using Python Code

Drawing the Indian flag using Python code involves creating a graphical representation of the flag’s design. The Indian flag consists of three horizontal stripes of different colors: saffron at the top, white in the middle, and green at the bottom, with a navy blue Ashoka Chakra (wheel) with 24 spokes at the center of the white stripe.

Here’s an example of how to draw the Indian flag using the Python library Turtle Graphics:

Python
import turtle

# Create a Turtle screen
screen = turtle.Screen()
screen.setup(700, 500)
screen.bgcolor("#FFFFFF")

# Create a Turtle object
flag = turtle.Turtle()
flag.speed(10)  # Set the drawing speed

# Function to draw a rectangle
def draw_rectangle(color, width, height):
    flag.fillcolor(color)
    flag.begin_fill()
    for _ in range(2):
        flag.forward(width)
        flag.right(90)
        flag.forward(height)
        flag.right(90)
    flag.end_fill()

# Function to draw the Ashoka Chakra
def draw_chakra():
    flag.penup()
    flag.goto(0, -120)  # Position the turtle at the center of the white stripe
    flag.pendown()
    flag.color("#000080")
    flag.begin_fill()
    flag.circle(50)
    flag.end_fill()
    flag.penup()
    flag.goto(0, -50)  # Position the turtle at the center of the Ashoka Chakra
    flag.pendown()
    flag.color("#FFFFFF")
    flag.begin_fill()
    flag.circle(45)
    flag.end_fill()

# Draw the saffron rectangle at the top
draw_rectangle("#FF9933", 700, 100)

# Move the turtle to the middle for drawing the Ashoka Chakra
flag.penup()
flag.goto(0, 0)
flag.pendown()

# Draw the white rectangle in the middle
draw_rectangle("#FFFFFF", 700, 100)

# Draw the green rectangle at the bottom
draw_rectangle("#138808", 700, 100)

# Draw the Ashoka Chakra
draw_chakra()

# Close the Turtle graphics window when clicked
screen.exitonclick()

In this code, we use the Turtle graphics library to draw the Indian flag step by step. We create functions for drawing rectangles and the Ashoka Chakra to make the code more organized. The colors and dimensions are set according to the specifications of the Indian flag.

Run this code, and a window with the Indian flag will be displayed. You can click on the window to close it when you’re done.

YOU MAY ALSO LIKE...

The Tech Thunder

The Tech Thunder

The Tech Thunder


COMMENTS