from gameconstants import Cells def display_gameboard(board): print(f"FIRST:@ SECOND:O") for y in range(0, 10): for x in range(0, 10): if board[x][y] == Cells.BLANK: print(".", end="") elif board[x][y] == Cells.FIRST_CHIP: print("@", end="") elif board[x][y] == Cells.SECOND_CHIP: print("O", end="") elif board[x][y] == Cells.WALL: print("#", end="") print()