Die Suche ergab 1 Treffer

von Benutzername2
Mittwoch 2. März 2022, 17:19
Forum: Allgemeine Fragen
Thema: Python_Turtle_Graphics
Antworten: 2
Zugriffe: 360

Python_Turtle_Graphics

https://ibb.co/4fdwg5W
Bild:
https://ibb.co/4fdwg5W


import turtle

turtle.clear()
t = turtle


def baum(x):
if x < 5:
return

else:
t.forward(x)
t.left(45)
baum(x/2)
t.right(90)
baum(x/2)
t.left(45)
t.back(x)

t.left(90)
baum(100)




Guten Abend,

ich habe ein großes Verständnis ...