Skip to content

Instantly share code, notes, and snippets.

View papergracie's full-sized avatar

papergracie

View GitHub Profile
@papergracie
papergracie / Pam Qian_Tic Tac Toe_2016.py
Created October 3, 2025 08:15 — forked from qianguigui1104/Pam Qian_Tic Tac Toe_2016.py
A traditional Tic Tac Toe game written in Python
# Pam Qian 2016 Fall CS 112 Python Midterm Project II
# Tic Tack Toe
def main():
# The main function
introduction = intro()
board = create_grid()
pretty = printPretty(board)
symbol_1, symbol_2 = sym()
full = isFull(board, symbol_1, symbol_2) # The function that starts the game is also in here.