How To Create Indian Flag Using Turtle Python

preview_player
Показать описание
In this video, i will show you how you can create the Indian flag using turtle these type of projects tests your creativity and logical thinking
so it is a good short project for all beginners

how to install turtle :
just write "pip install turtle" in cmd

related question tags :

* 5 Python Projects for Beginners
* Python Projects For Beginners | Python Projects Examples | Python Tutorial | Edureka
* 15 Python Projects in Under 15 Minutes (Code Included)
* Python Tutorial for Beginners [Full Course] 2019
Рекомендации по теме
Комментарии
Автор

a slight modification in this program, thanx to @Anshumaan Kumar Prasad

from turtle import *

speed(0)
setup(800, 500)

penup()
goto(-400, 250)
pendown()

# Orange Rectangle
color("orange")
begin_fill()
forward(800)
right(90)
forward(167)
right(90)
forward(800)
end_fill()

left(90)
forward(167)

# Green Rectangle
color("green")
begin_fill()
forward(167)
left(90)
forward(800)
left(90)
forward(167)
end_fill()

# Big Blue Circle
penup()
goto(70, 0)
pendown()
color("navy")
begin_fill()
circle(70)
end_fill()

# Big White Circle
penup()
goto(60, 0)
pendown()
color("white")
begin_fill()
circle(60)
end_fill()

# Mini Blue Circles
penup()
goto(-57, -8)
pendown()
color("navy")
for i in range(24):
begin_fill()
circle(3)
end_fill()
penup()
forward(15)
right(15)
pendown()

# Small Blue Circle
penup()
goto(20, 0)
pendown()
begin_fill()
circle(20)
end_fill()

# Spokes
penup()
goto(0, 0)
pendown()
pensize(2)
for i in range(24):
forward(60)
backward(60)
left(15)

hideturtle()

Iknowpython
Автор

Thank you for this amazing project sir 👍

bhagyashreerokade
Автор

at last in making green you could have changed -500 to 500

kusumpatel
Автор

I think spikes are not formed in between.

aminoxix
Автор

Great 👍 bruh I enjoy 😉 ur projects 💯❤️

frasonfrancis
Автор

Which python course would be best to learn for beginners

saisumanth
Автор

Awaj hi nhi aa rhi, khud ke liye video banaye hai?

raeesgauravsingh
Автор

Sir voice is so low actually its not audible 😟

mohammadabbaskhan
Автор

Sir in this u have coded orange and green color but where is white colour because I want to change white clr and make different flags for practice

todaysgenerationlearnerand
join shbcf.ru