Featured Post

Data Science Concepts

Python Turtle - Draw Bangladesh National Flag In Python Turtle Graphics By #BKTutorial

 





Source Code:

#Bangladesh Flag

import turtle
t=turtle
t.title("Bangladesh Flag")
t.speed(1)
t.setup(800, 500)
t.bgcolor("seagreen")

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

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

t.hideturtle()
t.exitonclick()



Comments