A two players Tic Tac Toe console game using Python
This is what the project directory looks like without Git.
📦py-tic-tac-toe
┣ 📂_include
┃ ┗ 📜youtube.yml
┣ 📜.gitignore
┣ 📜LICENSE
┣ 📜Main.py
┗ 📜README.md
This is what my project looks like with the git and the necessary things for that.
➡️ This is a very long list! Expand it to display everything!
📦py-tic-tac-toe
┣ 📂.git
┃ ┣ 📂hooks
┃ ┃ ┣ 📜applypatch-msg.sample
┃ ┃ ┣ 📜commit-msg.sample
┃ ┃ ┣ 📜fsmonitor-watchman.sample
┃ ┃ ┣ 📜post-update.sample
┃ ┃ ┣ 📜pre-applypatch.sample
┃ ┃ ┣ 📜pre-commit.sample
┃ ┃ ┣ 📜pre-merge-commit.sample
┃ ┃ ┣ 📜pre-push.sample
┃ ┃ ┣ 📜pre-rebase.sample
┃ ┃ ┣ 📜pre-receive.sample
┃ ┃ ┣ 📜prepare-commit-msg.sample
┃ ┃ ┣ 📜push-to-checkout.sample
┃ ┃ ┣ 📜sendemail-validate.sample
┃ ┃ ┗ 📜update.sample
┃ ┣ 📂info
┃ ┃ ┗ 📜exclude
┃ ┣ 📂logs
┃ ┃ ┣ 📂refs
┃ ┃ ┃ ┣ 📂heads
┃ ┃ ┃ ┃ ┗ 📜main
┃ ┃ ┃ ┗ 📂remotes
┃ ┃ ┃ ┃ ┗ 📂origin
┃ ┃ ┃ ┃ ┃ ┗ 📜HEAD
┃ ┃ ┗ 📜HEAD
┃ ┣ 📂objects
┃ ┃ ┣ 📂info
┃ ┃ ┗ 📂pack
┃ ┃ ┃ ┣ 📜pack-382306c5af64385ff66c332b72af12a4c9e17421.idx
┃ ┃ ┃ ┣ 📜pack-382306c5af64385ff66c332b72af12a4c9e17421.pack
┃ ┃ ┃ ┗ 📜pack-382306c5af64385ff66c332b72af12a4c9e17421.rev
┃ ┣ 📂refs
┃ ┃ ┣ 📂heads
┃ ┃ ┃ ┗ 📜main
┃ ┃ ┣ 📂remotes
┃ ┃ ┃ ┗ 📂origin
┃ ┃ ┃ ┃ ┗ 📜HEAD
┃ ┃ ┗ 📂tags
┃ ┣ 📜config
┃ ┣ 📜description
┃ ┣ 📜FETCH_HEAD
┃ ┣ 📜HEAD
┃ ┣ 📜index
┃ ┗ 📜packed-refs
┣ 📂_include
┃ ┗ 📜youtube.yml
┣ 📜.gitignore
┣ 📜LICENSE
┣ 📜Main.py
┗ 📜README.md
- Clone the repository
git clone https://github.com/FahimFBA/py-tic-tac-toe.git
- Go to the project directory
py-tic-tac-toe
- Run the project
python Main.py
if you are on a Windows machine, andpython3 Main.py
if you are on a Linux or Mac machine