Draw Infinity Logo Graphic Design in Python Turtle | Python Turtle Programming

Draw Infinity Logo Graphic Design in Python Turtle | Python Turtle Programming



                 Watch tutorial here


Source Code:

from turtle import *
bgcolor('black')   color('cyan')
speed(11)
right(45)
for i in range(150):
        if 7 < i < 62:
            left(5)
        if 80 < i < 133:
    right(5)
        circle(30)
     if i < 80:
            forward(10)
        else:
           forward(5)
done()


Download Source Code >> here

Post a Comment

0 Comments