I'm new to this forum, so I don't really know the rules and the submission template here. sorry if i do some mistakes.
So my problem is that I have a code that makes 2 AI play Tic Tac Toe. Here is the output of the game.
| X | O | X |
| X | O | X |
| O | O | X |
And I need to present this to an audience and would like to present my output in a more graphical version like this:
So my question is, how do I turn my output into my graphical version?
Thanks to help me
I suggest you to give a look at some GUI libraries like Qt, Kivy, pygame... I find
tkinter
to be one of the easiest to work with, here's a tutorial about tic-tac-toe specifically.