Featured Post

Python Turtle - Draw Circle Design Using Square Shape in Python Turtle Graphics By #BKTutorial





Source Code:

import turtle
t=turtle
t.speed(50)
t.bgcolor('black')
t.color('white')
#t.pensize(2)
t.left(120)

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



 

Comments