Skip to content

Instantly share code, notes, and snippets.

View TalhaProgrammer92's full-sized avatar

Talha Ahmad TalhaProgrammer92

View GitHub Profile
@TalhaProgrammer92
TalhaProgrammer92 / Tic-Tac-Toe.py
Last active May 28, 2025 13:24 — forked from CodeWithHarry/Tic-Tac-Toe.py
Code for the tic tac toe game we created in this video: https://youtu.be/E8fmDDtaHLU on CodeWithHarry channel on YouTube
from random import randint, shuffle
from os import system, mkdir, name
from os.path import join, exists
import time
import sqlite3 as sq
# * Check if folder 'save' exists or not
if not exists('save'):
mkdir('save')