Python Turtle - Spiral Animation

preview_player
Показать описание
import turtle
import time

leo = turtle.Turtle()

def spiral():
for i in range(360):

def spin(d):

try:
n = 0
while True:
spin(-5)
spiral()
n += 1
except:
print("Exit")
Рекомендации по теме
Комментарии
Автор

Very cool. :o Thank you for making this. I was just wondering if turtle could draw animations fast enough.

vyienitrogen