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.

Endlos.py 321B

12345678910111213
  1. while front_is_clear():
  2. move()
  3. turn_left()
  4. turn_left()
  5. ################################################################
  6. # WARNING: Do not change this comment.
  7. # Library Code is below.
  8. ################################################################
  9. def turn_around():
  10. turn_left()
  11. turn_left()