inf-kswo/ExamStuff/Aufgabe 7 Prfg Spirale.py
2025-01-20 19:41:45 +01:00

19 lines
335 B
Python
Executable File

from turtle import*
shape("turtle")
color("blue")
distance = 10
pu()
for i in range(2):
fd(distance)
rt(20)
orientation = heading()
stamp()
while orientation > 0:
orientation = heading()
fd(distance)
rt(20)
stamp()
distance += 2
print(orientation)