Python Turtle - Code the Bangladesh Flag Tutorial

preview_player
Показать описание
Learn how to quickly draw the Bangladesh flag using Python's Turtle module.

~ CODE ~

from turtle import *

speed(0)
setup(800, 500)
bgcolor("seagreen")

penup()
goto(-100, -100)
pendown()

color("red")
begin_fill()
circle(120)
end_fill()

hideturtle()
Рекомендации по теме
Комментарии
Автор

Nice to learn drawing my flag in python. Thanks

azharulislam
Автор

Im from Bangladesh and here the circle in perfectly in the middle

shanazparveen