Advertisement
This is comment for paste
02. Fishing Competition - 3
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Nice code, but in directions better make so:
- elif direction == "left":
- col = (col - 1) % len(matrix[row])
- elif direction == "right":
- col = (col + 1) % len(matrix[row])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement