Жан-Юль-Ян Азель, 414 группа (КФ) VirtualTurtle 11373
Абдикашева Вилена Ринатовна, 411 группа VirtualTurtle 10206
n1def turtle(start_pos, init_dir):n1def turtle(position, initial_direction):
2    pos_x, pos_y = start_pos2    pos_x, pos_y = position
3    movement = [(1, 0), (0, 1), (-1, 0), (0, -1)]3    moves = [(1, 0), (0, 1), (-1, 0), (0, -1)]
4    direction = init_dir4    facing = initial_direction
5    while True:5    while True:
t6        action = (yield (pos_x, pos_y))t6        command = (yield (pos_x, pos_y))
7        if action == 'f':7        if command == 'f':
8            delta_x, delta_y = movement[direction]8            move_x, move_y = moves[facing]
9            pos_x += delta_x9            pos_x += move_x
10            pos_y += delta_y10            pos_y += move_y
11        elif action == 'l':11        elif command == 'l':
12            direction = (direction + 1) % 412            facing = (facing + 1) % 4
13        elif action == 'r':13        elif command == 'r':
14            direction = (direction - 1) % 414            facing = (facing - 1) % 4
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op