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

17
RandomTurtle/Kleeblatt.py Executable file
View File

@@ -0,0 +1,17 @@
from turtle import*
speed(1000)
def blatt(seite,winkel,anzahl):
for i in range(anzahl):
begin_fill()
for i in range(3):
fd(seite)
lt(winkel)
end_fill()
rt(360/anzahl)
ht()
color("green")
blatt(100,120,4)
exitonclick()