You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This program makes use of three different python scripts: player.py, game.py, and game_class.py
The player class keeps track of a players name and number of wins.
The game_class is then class that keeps track of a tic tac toe board. It contains the methods that check to see which player has one a game or if a game is a tie.
It also has the method that keeps track of the board through player turns.
The game.py script is what establishes a game and player instances and then determines which player will go first. The main method in the game allows for
repeated games to be played with the same players.