Files
inf-kswo/Animation/Animation_dot.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

26 lines
319 B
Python
Executable File

import turtle
import time
turtle.width(4)
turtle.bgcolor("black")
turtle.color("red")
turtle.ht()
turtle.pu()
turtle.setpos(-700, -700)
turtle.lt(45)
turtle.pd()
turtle.tracer(0)
turtle.delay(500)
while True:
turtle.clear()
turtle.dot(50)
turtle.fd(0.5)
turtle.update()