Skip to content

Instantly share code, notes, and snippets.

View michelleye123's full-sized avatar

Michelle michelleye123

  • Qantas
  • Sydney, Australia
View GitHub Profile
@michelleye123
michelleye123 / TicTacToe.py
Last active February 10, 2016 20:48
A game of Tic Tac Toe for two human people
# Feb 2016
# Michelle Ye
# RC Int #2
class Board:
values = [" "] * 9
keep_playing = 1