This is a simple tic-tac-toe game written in Python3. No specific algorithm is used. Just simple storage and display of user input data at specific user input position.
It contains:
- tictactoe.py -- Conatins the main code which we r going to run on our terminal if we want to play.
- Readme.md -- To guide you about how the project works.
- image folder -- contain some images of the program running on terminal
First download the code and extract it or clone it with git (using git clone <url>). Then move to the directory
having the code (using cd <path>). Then run the file using python3 tictactoe.py. You will see something like this
After it , you can choose your mark and play that will look something like this:
In order to contribute to the code, you have to first fork this repository
on Github. Then clone the repository from your own account (install git and
run git clone <url>). Then create a new branch in git, make changes to the
code and commit your changes after testing them. Once a new feature has been
added or a bug has been removed, merge it with the master branch and send a
pull request to the original repository.


