Featured Post

Data Science Concepts

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

 






Source Code:

#JapanFlag

import turtle
t=turtle
t.title("Japan Flag")
t.speed(1)

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

t.hideturtle()



Comments