DEV Community

Shea31j
Shea31j

Posted on

My Simple Tic-Tac-Toe Game

As part of Codecademy's portfolio project series, I built an interactive Tic-Tac-Toe game that runs entirely in the terminal. This was my first complete Python program, and it was the perfect way to practice core concepts like loops, functions, lists, conditionals, and handling user input with input().

I chose Tic-Tac-Toe because it's an iconic two-player game that's simple on the surface but lets you dive into game logic—checking for wins, handling invalid moves, and detecting ties. Plus, making it replayable without restarting the program felt like a nice touch!

Check out the full commit history & code here: https://github.com/Shea31j/python-tic-tac-toe-game

Top comments (1)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.