Upload code

This commit is contained in:
2025-01-20 19:40:14 +01:00
parent 71625e3e41
commit 07809d7d77
66 changed files with 8917 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
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)