Make Unique Design Using Pydroid 3

Unique design using turtle on pydroid 3

Import turtle
turtle.bgcolor ('black')

t=turtle.Turtle ()
t.pencolor ('teal')
t.speed (200)
t.pensize (2)

for i in range (500):
    t.fd (i)
    t.rt (144)
    t.fd (i)
    t.rt (50)


Watch video on youtube:

Comments

Popular posts from this blog

Python Code To Make Flappybird Game

Draw Naruto Face Using Python

How to Make Quiz Game In Pydroid 3