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