Beispiele und Musterlösungen
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

06_sized_square.py 303B

2 months ago
1234567891011121314
  1. # Zeichnen eines Quadrats variabler Größe mit der Turtle
  2. from turtle import Turtle
  3. sophia = Turtle()
  4. # Eine Turtle zeichnet ein Quadrat
  5. def draw_square(turtle, length):
  6. for _ in range(4):
  7. turtle.forward(length)
  8. turtle.right(90)
  9. draw_square(sophia, 100)
  10. sophia.screen.mainloop()