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.

09_h_letter.py 309B

2 months ago
123456789101112131415161718
  1. from turtle import Turtle
  2. sophia = Turtle()
  3. def draw_h(turtle):
  4. turtle.left(90)
  5. turtle.forward(100)
  6. turtle.backward(50)
  7. turtle.right(90)
  8. turtle.forward(50)
  9. turtle.left(90)
  10. turtle.forward(50)
  11. turtle.backward(100)
  12. turtle.right(90)
  13. draw_h(sophia)
  14. sophia.screen.mainloop()