Skip to content

Instantly share code, notes, and snippets.

@arnaudbouffard
arnaudbouffard / tictactoe.py
Created August 10, 2020 15:13
command line python tictactoe
#! python3
# tictactoe.py - command line tic tac toe game
import random
from itertools import cycle
myIterator = cycle(range(2))
players = ["O", "X"]
game_result = ""