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.

01_simple_line.py 134B

12345678910
  1. # Sophia läuft 100 Schritte nach vorne
  2. from turtle import Turtle
  3. sophia = Turtle()
  4. sophia.forward(100)
  5. sophia.screen.mainloop()