Created
April 21, 2018 05:33
-
-
Save Manpreet-Bhatti/80b65b1cbc5b8e2986345f40b6c67bab to your computer and use it in GitHub Desktop.
Tic Tac Toe - Python
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
| from __future__ import print_function | |
| from IPython.display import clear_output | |
| def display_board(board): | |
| clear_output() | |
| print(' | |') | |
| print(' ' + board[7] + ' | ' + board[8] + ' | ' + board[9]) | |
| print(' | |') | |
| print('-----------') | |
| print(' | |') | |
| print(' ' + board[4] + ' | ' + board[5] + ' | ' + board[6]) | |
| print(' | |') | |
| print('-----------') | |
| print(' | |') | |
| print(' ' + board[1] + ' | ' + board[2] + ' | ' + board[3]) | |
| print(' | |') | |
| def player_input(): | |
| marker = '' | |
| while not (marker == 'X' or marker == 'O'): | |
| marker = raw_input('Player 1: Do you want to be X or O?').upper() | |
| if marker == 'X': | |
| return ('X', 'O') | |
| else: | |
| return ('O', 'X') | |
| def place_marker(board, marker, position): | |
| board[position] = marker | |
| def win_check(board,mark): | |
| return ((board[7] == mark and board[8] == mark and board[9] == mark) or | |
| (board[4] == mark and board[5] == mark and board[6] == mark) or | |
| (board[1] == mark and board[2] == mark and board[3] == mark) or | |
| (board[7] == mark and board[4] == mark and board[1] == mark) or | |
| (board[8] == mark and board[5] == mark and board[2] == mark) or | |
| (board[9] == mark and board[6] == mark and board[3] == mark) or | |
| (board[7] == mark and board[5] == mark and board[3] == mark) or | |
| (board[9] == mark and board[5] == mark and board[1] == mark)) | |
| import random | |
| def choose_first(): | |
| if random.randint(0, 1) == 0: | |
| return 'Player 2' | |
| else: | |
| return 'Player 1' | |
| def space_check(board, position): | |
| return board[position] == ' ' | |
| def full_board_check(board): | |
| for i in range(1,10): | |
| if space_check(board, i): | |
| return False | |
| return True | |
| def player_choice(board): | |
| position = ' ' | |
| while position not in '1 2 3 4 5 6 7 8 9'.split() or not space_check(board, int(position)): | |
| position = raw_input('Choose your next position: (1-9) ') | |
| return int(position) | |
| def replay(): | |
| return raw_input('Do you want to play again? Enter Yes or No: ').lower().startswith('y') | |
| print('Welcome to Tic Tac Toe!') | |
| while True: | |
| theBoard = [' '] * 10 | |
| player1_marker, player2_marker = player_input() | |
| turn = choose_first() | |
| print(turn + ' will go first.') | |
| game_on = True | |
| while game_on: | |
| if turn == 'Player 1': | |
| display_board(theBoard) | |
| position = player_choice(theBoard) | |
| place_marker(theBoard, player1_marker, position) | |
| if win_check(theBoard, player1_marker): | |
| display_board(theBoard) | |
| print('Congratulations! You have won the game!') | |
| game_on = False | |
| else: | |
| if full_board_check(theBoard): | |
| display_board(theBoard) | |
| print('The game is a draw!') | |
| break | |
| else: | |
| turn = 'Player 2' | |
| else: | |
| display_board(theBoard) | |
| position = player_choice(theBoard) | |
| place_marker(theBoard, player2_marker, position) | |
| if win_check(theBoard, player2_marker): | |
| display_board(theBoard) | |
| print('Player 2 has won!') | |
| game_on = False | |
| else: | |
| if full_board_check(theBoard): | |
| display_board(theBoard) | |
| print('The game is a tie!') | |
| break | |
| else: | |
| turn = 'Player 1' | |
| if not replay(): | |
| break |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment