Benjamin Chase

-> Making Tic-Tac-Toe, creating art with turtles, and building a text-based Wordle clone.

Code

Click here to download all of the code.




Making Tic-Tac-Toe

Overview


This program displays a colorful tic-tac-toe game board in the command line, or alternatively opens a GUI application. The application was made using tkinter and uses text to display the game board.

Creating Games and Art with Turtles

Overview

Here I learned how to use the turtle module in Python to create geometric art (first image) and traffic simulations (second image). In the traffic simulation, when the different shapes "turtles" collide, they stop and become gray, which represents a car crash.

Making a Wordle Clone