This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""tictactoe game for 2 players | |
from blogpost: http://thebillington.co.uk/blog/posts/writing-a-tic-tac-toe-game-in-python by BILLY REBECCHI, | |
slightly improved by Horst JENS""" | |
from __future__ import print_function | |
choices = [] | |
for x in range (0, 9) : | |
choices.append(str(x + 1)) |