Featured Post

Python Turtle - Draw 3D Circle Pattern Using Square Shape in Python Turtle Graphics By #BKTutorial

 






Source Code:

import turtle

t=turtle
t.speed(0)
t.bgcolor('black')
t.left(100)

for a in range(100):
    if a%2 is 0:
        t.color('silver')
    else:
        t.color('gray')
    t.forward(200)
    t.left(91)

for b in range(100):
    t.left(30)
    if b%2 is 0:
        t.color('silver')
    else:
        t.color('gray')
    t.forward(200)
    t.left(95)
    
t.hideturtle()



Comments