Files
basic-computer-games/89_Tic-Tac-Toe/python/TicTacToe_exe
Chander Jindal 40557ce86b Classic TicTacToe just in Executable format
First, pick either 'X' or 'O' from the screen then, play the normal one Player TicTacToe.
Playing on Terminal is kinda boring so, I made it into an executable file.
2022-03-12 22:26:23 +05:30
..

Making of .exe file command pip install pyinstaller // if you don't have it, also make sure the path you are using is correct pyinstaller --onefile (I wanted it all to be in 1 file) -w (since i used pygames) app.py (name of my main python file)