Featured Post

Python Turtle - Draw Circle Flower Design in Python Turtle Graphics | 3d Design By #BKTutorial

 






Source Code:

import turtle

t=turtle

t.bgcolor("black")

t.pensize(2)

t.speed(50)


for i in range(15):

    for colors in ["silver","white","gray"]:

        t.color(colors)

        t.circle(100)

        t.right(10)


for j in range(15):

    for colorss in ["gray","white","silver"]:

        t.color(colorss)

        t.circle(60)

        t.right(10)

     

t.hideturtle()



Comments