Бозин Павел, 124 группа VirtualTurtle 9378
Алдабергенов Руслан Даниярович, 411 VirtualTurtle 8988
t1def turtle(start, direction):t1def turtle(coord, direction):
2    x, y = start2    x, y = coord
3    directions = [(1, 0), (0, 1), (-1, 0), (0, -1)]3    directions = [(1, 0), (0, 1), (-1, 0), (0, -1)]
4    while True:4    while True:
5        command = (yield (x, y))5        command = (yield (x, y))
6        if command == 'f':6        if command == 'f':
7            dx, dy = directions[direction]7            dx, dy = directions[direction]
8            x += dx8            x += dx
9            y += dy9            y += dy
10        elif command == 'l':10        elif command == 'l':
11            direction = (direction + 1) % 411            direction = (direction + 1) % 4
12        elif command == 'r':12        elif command == 'r':
13            direction = (direction - 1) % 413            direction = (direction - 1) % 4
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op