initial commit

This commit is contained in:
2025-10-01 10:46:21 +02:00
commit 50a55e19d6
138 changed files with 2037 additions and 0 deletions

8
turtle/a1.py Normal file
View File

@@ -0,0 +1,8 @@
from time import sleep
from turtle import *
from random import *
t = Turtle()
for _ in range(1,100):
t.forward(random.rand)