Files
inf-kswo/RandomTurtle/Striche.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

16 lines
182 B
Python
Executable File

from turtle import *
dicke = 3
lt(90)
for i in range(10):
fd(100)
bk(100)
rt(90)
pu()
fd(20)
pd()
lt(90)
width(dicke)
dicke += 2