Design Indian Flag Using Python Code

Опубликовано: 26 Март 2021
на канале: Python Projects
361
11

Design Indian Flag Using Python Programming with complete Source Code.

Source Code :

import turtle
from turtle import*

screen = turtle.Screen()

t = turtle.Turtle()
speed(0)

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


t.color("orange")
t.begin_fill()
t.forward(800)
t.right(90)
t.forward(167)
t.right(90)
t.forward(800)
t.end_fill()
t.left(90)
t.forward(167)


t.color("green")
t.begin_fill()
t.forward(167)
t.left(90)
t.forward(800)
t.left(90)
t.forward(167)
t.end_fill()


t.penup()
t.goto(70, 0)
t.pendown()
t.color("navy")
t.begin_fill()
t.circle(70)
t.end_fill()

t.penup()
t.goto(60, 0)
t.pendown()
t.color("white")
t.begin_fill()
t.circle(60)
t.end_fill()

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

t.penup()
t.goto(20, 0)
t.pendown()
t.begin_fill()
t.circle(20)
t.end_fill()
Spokes
t.penup()
t.goto(0, 0)
t.pendown()
t.pensize(2)
for i in range(24):
t.forward(60)
t.backward(60)
t.left(15)

turtle.done()


#youtubeshorts #pythoncode #indianflagusingpythoncode #pythonproject #pythoncode #pythonprojectsourcecode


Subscribe us for Daily Python Programming Amazing Projects.


На этой странице сайта вы можете посмотреть видео онлайн Design Indian Flag Using Python Code длительностью часов минут секунд в хорошем качестве, которое загрузил пользователь Python Projects 26 Март 2021, поделитесь ссылкой с друзьями и знакомыми, на youtube это видео уже посмотрели 361 раз и оно понравилось 11 зрителям. Приятного просмотра!