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.
1234567891011121314 |
- from library import turn_right
-
- while wall_on_right():
- move()
- turn_left()
- turn_left()
- move()
- ################################################################
- # WARNING: Do not change this comment.
- # Library Code is below.
- ################################################################
- def turn_right():
- for _ in range(3):
- turn_left()
|