Skip to content

Instantly share code, notes, and snippets.

View Argho2016's full-sized avatar
🎯
Focusing

Argho Das Argho2016

🎯
Focusing
View GitHub Profile
@Argho2016
Argho2016 / TicTacToe.py
Created April 6, 2020 18:30
Python Tic Tac Toe
board = [' ' for x in range(10)]
def insertLetter(letter, pos):
board[pos] = letter
def spaceIsfree(pos):
return board[pos] == ''
def printBoard(board):
print(' | | ')