Skip to content

Instantly share code, notes, and snippets.

@colyk
colyk / tic tc toe.py
Last active September 28, 2017 23:45
tic
from random import randint
from copy import deepcopy
board = [['-','-','-'],['-','-','-'],['-','-','-']]
def prnt():
print('-'*15)
for i in range(3):
print ("|| {} | {} | {} ||".format(*board[i]))
print('-'*15)