Skip to content

Instantly share code, notes, and snippets.

View travis-cramer's full-sized avatar

Travis Cramer travis-cramer

View GitHub Profile
from random import randint
board = []
for x in range(5):
board.append(["O"] * 5)
def print_board(board):
for row in board:
print " ".join(row)