-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTicTacToe.py
More file actions
165 lines (129 loc) · 4.73 KB
/
TicTacToe.py
File metadata and controls
165 lines (129 loc) · 4.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
import random
def display_board(board):
print(' | | ')
print(' '+board[1]+' | '+board[2]+' | '+board[3]+' ')
print(' | | ')
print('-----------------')
print(' | | ')
print(' '+board[4]+' | '+board[5]+' | '+board[6]+' ')
print(' | | ')
print('-----------------')
print(' | | ')
print(' '+board[7]+' | '+board[8]+' | '+board[9]+' ')
print(' | | ')
def player_input():
marker=''
while marker!='X' and marker!='O':
marker=input("Player 1: Choose X or O: ").upper()
if marker=='X':
return ('X','O')
else:
return ('O','X')
def place_marker(board, marker, pos):
board[pos]=marker
def win_check(board,marker):
win_combinations=[
[1,2,3],[4,5,6],[7,8,9], #All rows
[1,4,7],[2,5,8],[3,6,9], #All columns
[1,5,9],[3,5,7] #All diagonals
]
for combination in win_combinations:
if all(board[pos]==marker for pos in combination):
return True
return False
def choose_first():
first=random.randint(0,1)
if first==0:
return 'Player 1'
else:
return 'Player 2'
def space_check(board,pos):
return board[pos]==' '
def full_board_check(board):
for i in range(1,10):
if space_check(board,i):
return False
return True
def player_choice(board):
pos=0
while pos not in [1,2,3,4,5,6,7,8,9] or not space_check(board,pos):
pos=int(input('Choose a position: (1-9) '))
return pos
def replay():
choice=input("Would you like to play again? (Yes or No) ")
return choice.lower()=='yes'
if __name__ == "__main__":
print("Welcome to Tic Tac Toe")
print("This is a sample board with positions for your reference:")
test_board=["#",'1','2','3','4','5','6','7','8','9']
display_board(test_board)
name1=input("Player 1 Name: ")
name2=input("Player 2 name: ")
score1=0
score2=0
print(f'{name1}: Score {score1} and {name2}: Score {score2}')
while True:
board=[' ']*10
player1_marker, player2_marker= player_input()
print(f'{name1} marker: {player1_marker}')
print(f'{name2} marker: {player2_marker}')
turn=choose_first()
if turn=='Player 1':
print(f'{name1} will go first')
else:
print(f'{name2} will go first')
play_game=input('Ready to play? (Yes or No) ')
if play_game.lower()=='yes':
game_on=True
else:
game_on=False
while game_on:
if turn=='Player 1':
display_board(board)
pos=player_choice(board)
place_marker(board,player1_marker,pos)
if win_check(board,player1_marker):
display_board(board)
print(f'{name1} WON!!')
score1+=1
print(f'{name1}: Score {score1} and {name2}: Score {score2}')
game_on=False
else:
if full_board_check(board):
display_board(board)
print("TIE GAME!!")
score1+=1
score2+=1
print(f'{name1}: Score {score1} and {name2}: Score {score2}')
break
else:
turn='Player 2'
else:
display_board(board)
pos=player_choice(board)
place_marker(board,player2_marker,pos)
if win_check(board,player2_marker):
display_board(board)
print(f'{name2} WON!!')
score2+=1
print(f'{name1}: Score {score1} and {name2}: Score {score2}')
game_on=False
else:
if full_board_check(board):
display_board(board)
print("TIE GAME!!")
score1+=1
score2+=1
print(f'{name1}: Score {score1} and {name2}: Score {score2}')
break
else:
turn='Player 1'
if not replay():
print("Final scores")
if score1>score2:
print(f'{name1} HAS THE HIGHEST SCORES!!')
elif score2>score1:
print(f'{name2} HAS THE HIGHEST SCORES!!')
else:
print("TIE SCORES!!")
break