from random import * class Board: #A class for managing different situations and states happening in the game and on the board def __init__(self, board): self.board=board def print_board(self): for i in self.board: for j in i: print(j,end="") print() def play_move(r,c) if(r%2==1):