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.

07_filled_square.py 493B

2 months ago
123456789101112131415161718192021
  1. # Zeichnen eines gefüllten Quadrats mit der Turtle
  2. from turtle import Turtle
  3. # Eine Turtle zeichnet ein Quadrat
  4. def draw_square(turtle, length):
  5. for _ in range(4):
  6. turtle.forward(length)
  7. turtle.right(90)
  8. # Eine Turtle zeichnet ein gefülltes Quadrat
  9. def draw_filled_square(turtle, length):
  10. turtle.begin_fill()
  11. draw_square(turtle, length)
  12. turtle.end_fill()
  13. sophia = Turtle()
  14. sophia.fillcolor('red')
  15. draw_filled_square(sophia, 100)
  16. sophia.screen.mainloop()