Erstellen eines Bildschirms auf Python (Turtle)

Post a reply

Smilies
:) :( :oops: :chelo: :roll: :wink: :muza: :sorry: :angel: :read: *x) :clever:
View more smilies

BBCode is ON
[img] is ON
[flash] is OFF
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Erstellen eines Bildschirms auf Python (Turtle)

by Anonymous » 06 Apr 2025, 23:41

Für eine Zuordnung muss ich ein Turtle -Programm auf Python erstellen, das eine Rekursion zum Zeichnen einer Form verwendet.

Code: Select all

import turtle

t = turtle.Turtle()
ist, wie mein Programm im Moment aussieht, ich habe Turtle installiert und habe überall nach alternativen Lösungen zum Erstellen eines Bildschirms gesucht, aber jede Zeile, die ich mehr oder weniger gefunden habe, hat die gleiche Zeile, die für mich nicht funktioniert.>

Top