Draw 3d shape with python turtle
 In this article I'll share the source code to draw this beautiful 3d image using python turtle graphics. 
Source code:-
import turtle as t
pen = t.Turtle()
pen.color('cyan')
pen.speed(0)
screen=t.Screen()
screen.bgcolor('black')
def draw_square():
    for side in range(4):
        pen.forward(100)
        pen.right(90)
        for side in range(4):
            pen.forward(50)
            pen.right(90)
pen.penup()
pen.back(20)
pen.pendown()
for square in range(80):
    draw_square()
    pen.forward(5)
    pen.left(5)
Output:-
Share your thoughts in comment box below. 

Comments
Post a Comment