Skip to content

Commit 2a026e3

Browse files
authored
A simple tic tac toe game using python
1 parent 70f1710 commit 2a026e3

File tree

1 file changed

+186
-0
lines changed

1 file changed

+186
-0
lines changed

TicTacToe.py

+186
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
def print_tic_tac_toe(values):
2+
print("\n")
3+
print("\t | |")
4+
print("\t {} | {} | {}".format(values[0], values[1], values[2]))
5+
print('\t_____|_____|_____')
6+
7+
print("\t | |")
8+
print("\t {} | {} | {}".format(values[3], values[4], values[5]))
9+
print('\t_____|_____|_____')
10+
11+
print("\t | |")
12+
13+
print("\t {} | {} | {}".format(values[6], values[7], values[8]))
14+
print("\t | |")
15+
print("\n")
16+
17+
18+
# Function to print the score-board
19+
def print_scoreboard(score_board):
20+
print("\t--------------------------------")
21+
print("\t SCOREBOARD ")
22+
print("\t--------------------------------")
23+
24+
players = list(score_board.keys())
25+
print("\t ", players[0], "\t ", score_board[players[0]])
26+
print("\t ", players[1], "\t ", score_board[players[1]])
27+
28+
print("\t--------------------------------\n")
29+
30+
# Function to check if any player has won
31+
def check_win(player_pos, cur_player):
32+
33+
# All possible winning combinations
34+
soln = [[1, 2, 3], [4, 5, 6], [7, 8, 9], [1, 4, 7], [2, 5, 8], [3, 6, 9], [1, 5, 9], [3, 5, 7]]
35+
36+
# Loop to check if any winning combination is satisfied
37+
for x in soln:
38+
if all(y in player_pos[cur_player] for y in x):
39+
40+
# Return True if any winning combination satisfies
41+
return True
42+
# Return False if no combination is satisfied
43+
return False
44+
45+
# Function to check if the game is drawn
46+
def check_draw(player_pos):
47+
if len(player_pos['X']) + len(player_pos['O']) == 9:
48+
return True
49+
return False
50+
51+
# Function for a single game of Tic Tac Toe
52+
def single_game(cur_player):
53+
54+
# Represents the Tic Tac Toe
55+
values = [' ' for x in range(9)]
56+
57+
# Stores the positions occupied by X and O
58+
player_pos = {'X':[], 'O':[]}
59+
60+
# Game Loop for a single game of Tic Tac Toe
61+
while True:
62+
print_tic_tac_toe(values)
63+
64+
# Try exception block for MOVE input
65+
try:
66+
print("Player ", cur_player, " turn. Which box? : ", end="")
67+
move = int(input())
68+
except ValueError:
69+
print("Wrong Input!!! Try Again")
70+
continue
71+
72+
# Sanity check for MOVE inout
73+
if move < 1 or move > 9:
74+
print("Wrong Input!!! Try Again")
75+
continue
76+
77+
# Check if the box is not occupied already
78+
if values[move-1] != ' ':
79+
print("Place already filled. Try again!!")
80+
continue
81+
82+
# Update game information
83+
84+
# Updating grid status
85+
values[move-1] = cur_player
86+
87+
# Updating player positions
88+
player_pos[cur_player].append(move)
89+
90+
# Function call for checking win
91+
if check_win(player_pos, cur_player):
92+
print_tic_tac_toe(values)
93+
print("Player ", cur_player, " has won the game!!")
94+
print("\n")
95+
return cur_player
96+
97+
# Function call for checking draw game
98+
if check_draw(player_pos):
99+
print_tic_tac_toe(values)
100+
print("Game Drawn")
101+
print("\n")
102+
return 'D'
103+
104+
# Switch player moves
105+
if cur_player == 'X':
106+
cur_player = 'O'
107+
else:
108+
cur_player = 'X'
109+
110+
if __name__ == "__main__":
111+
112+
print("Player 1")
113+
player1 = input("Enter the name : ")
114+
print("\n")
115+
116+
print("Player 2")
117+
player2 = input("Enter the name : ")
118+
print("\n")
119+
120+
# Stores the player who chooses X and O
121+
cur_player = player1
122+
123+
# Stores the choice of players
124+
player_choice = {'X' : "", 'O' : ""}
125+
126+
# Stores the options
127+
options = ['X', 'O']
128+
129+
# Stores the scoreboard
130+
score_board = {player1: 0, player2: 0}
131+
print_scoreboard(score_board)
132+
133+
# Game Loop for a series of Tic Tac Toe
134+
# The loop runs until the players quit
135+
while True:
136+
137+
# Player choice Menu
138+
print("Turn to choose for", cur_player)
139+
print("Enter 1 for X")
140+
print("Enter 2 for O")
141+
print("Enter 3 to Quit")
142+
143+
# Try exception for CHOICE input
144+
try:
145+
choice = int(input())
146+
except ValueError:
147+
print("Wrong Input!!! Try Again\n")
148+
continue
149+
150+
# Conditions for player choice
151+
if choice == 1:
152+
player_choice['X'] = cur_player
153+
if cur_player == player1:
154+
player_choice['O'] = player2
155+
else:
156+
player_choice['O'] = player1
157+
158+
elif choice == 2:
159+
player_choice['O'] = cur_player
160+
if cur_player == player1:
161+
player_choice['X'] = player2
162+
else:
163+
player_choice['X'] = player1
164+
165+
elif choice == 3:
166+
print("Final Scores")
167+
print_scoreboard(score_board)
168+
break
169+
170+
else:
171+
print("Wrong Choice!!!! Try Again\n")
172+
173+
# Stores the winner in a single game of Tic Tac Toe
174+
winner = single_game(options[choice-1])
175+
176+
# Edits the scoreboard according to the winner
177+
if winner != 'D' :
178+
player_won = player_choice[winner]
179+
score_board[player_won] = score_board[player_won] + 1
180+
181+
print_scoreboard(score_board)
182+
# Switch player who chooses X or O
183+
if cur_player == player1:
184+
cur_player = player2
185+
else:
186+
cur_player = player1

0 commit comments

Comments
 (0)