Create a turtle by Python in android

Making a turtle by Python 

import turtle 

t = turtle.Turtle()

t.speed(100)
turtle.bgcolor("black")

for i in range(240):
t.color("green","red")
t.circle(4*i)
t.left(5)
turtle.done()

Post a Comment

0 Comments