Files
inf-kswo/RandomTurtle/Dots.py
Janis Hutz ede0ee318b Format
There really is no hope of making this code even half-way decent without
spending the time to rewrite them all properly. Don't want to do any of
that
2025-11-03 17:08:35 +01:00

27 lines
272 B
Python
Executable File

from turtle import *
import time
def scene(d):
dot(500 / d)
ht()
color("red")
bgcolor("black")
pu()
tracer(0)
lt(90)
bk(120)
a = 200
for i in range(200):
clear()
scene(a)
update()
a -= 1
time.sleep(0.025)
fd(1)