Skip to content

Instantly share code, notes, and snippets.

@ejmurray
Created April 16, 2016 18:19
Show Gist options
  • Save ejmurray/475d8819cf79bb5e23852a47c2780caa to your computer and use it in GitHub Desktop.
Save ejmurray/475d8819cf79bb5e23852a47c2780caa to your computer and use it in GitHub Desktop.
TicTacToe2.py
# encoding: utf-8
# author: Ernest
# created: 31/01/2016
#
"""
Description
Creation of a TicTacToe game based on the milestone project 1 from the
python bootcamp tutorial on Udemy
"""
# Globals
board = [' ']
game_state = True
announce = ''
def reset_board():
"""
:return: rests the board
"""
pass
def display_board():
"""
:return:
"""
pass
def win_check():
"""
:return:
"""
pass
def full_board():
"""
:return:
"""
pass
def ask_player():
"""
:return:
"""
pass
def player_choice():
"""
:return:
"""
pass
def play_game():
"""
:return:
"""
pass
play_game()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment