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.

05_square.py 252B

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