Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 978 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 978 Bytes

TicTacToe AI Game

Welcome to the TicTacToe AI Game! This simple Python project allows users to play the classic TicTacToe game against an AI opponent.

Files

  1. tic_tac_toe.py: This file contains the implementation of the TicTacToe game logic.

  2. runner.py: This file serves as the entry point for the game. To play, simply run this file.

  3. requirements.txt: This file lists the required Python packages. You can install them using:

    pip install -r requirements.txt

How to Play

  1. Ensure you have Python installed on your machine.

  2. Install the required packages using the command mentioned above.

  3. Run the game by executing the following command:

    python runner.py
  4. Follow the on-screen instructions to make your moves. The AI will respond accordingly.

  5. Enjoy playing TicTacToe against the AI!

Feel free to explore the code and make any modifications or improvements as you see fit. Happy coding!