So a couple of days ago I came across this video called Coding is Not Difficult. This seemed to contradict the countless hours I spent getting a checkers piece to move for a checkers game that I programmed a few days prior. Maybe this video will change my mind, I thought. Judge for yourself: Yeah, […]
Author: Zachary Hine
Creating Your First GUI Application
If you’ve been following the past two tutorials, you’ve learned how to build a tic-tac-toe game and guessing game in Python. These games are fun to an extent, but they are limited. We want to make our games more colorful and engaging. To do this, we need to add graphics. Getting Started With Graphics […]
How to Make Tic-Tac-Toe in Python
You’ve surely played tic-tac-toe as a child. Do you remember how annoying it was to draw out the board each time? Good news, you no longer have to. In this post, I’m going to show you how to program a two player tic-tac-toe game using Python. It is a surprisingly simple implementation, requiring only about […]