-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictactoe.py
228 lines (207 loc) · 7.22 KB
/
tictactoe.py
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
import tkinter as tk
from tkinter import *
import tkinter.messagebox as msg
root = tk.Tk()
root.geometry("500x600")
root.title("TIC-TAC-TOE")
digits = [1, 2, 3, 4, 5, 6, 7, 8, 9]
mark = ''
count = 0
panels = ["panel"]*10
def win(panels, sign):
return((panels[1] == panels[2] == panels[3] == sign)
or (panels[1] == panels[4] == panels[7] == sign)
or (panels[1] == panels[5] == panels[9] == sign)
or (panels[2] == panels[5] == panels[8] == sign)
or (panels[3] == panels[6] == panels[9] == sign)
or (panels[3] == panels[5] == panels[7] == sign)
or (panels[4] == panels[5] == panels[6] == sign)
or (panels[7] == panels[8] == panels[9] == sign))
def checker(digit):
global count, mark, digits
if digit == 1 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button1.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 2 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button2.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 3 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button3.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 4 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button4.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 5 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button5.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 6 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button6.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 7 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button7.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 8 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button8.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if digit == 9 and digit in digits:
digits.remove(digit)
if count % 2 == 0:
mark = 'X'
panels[digit] = mark
elif count % 2 != 0:
mark = 'O'
panels[digit] = mark
button9.config(text=mark)
count = count + 1
sign = mark
if(win(panels, sign) and sign == 'X'):
msg.showinfo("Result", "Player 1 wins")
root.destroy()
elif(win(panels, sign) and sign == 'O'):
msg.showinfo("Result", "Player 2 wins")
root.destroy()
if(count > 8 and win(panels, 'X') == False and win(panels, 'O') == False):
msg.showinfo("Result", "Match Tied")
root.destroy()
Label(root, text="player1: X", font="times 15").grid(row=0, column=1)
Label(root, text="player2: O", font="times 15").grid(row=0, column=2)
button1 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(1))
button1.grid(row=1, column=1)
button2 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(2))
button2.grid(row=1, column=2)
button3 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(3))
button3.grid(row=1, column=3)
button4 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(4))
button4.grid(row=2, column=1)
button5 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(5))
button5.grid(row=2, column=2)
button6 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(6))
button6.grid(row=2, column=3)
button7 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(7))
button7.grid(row=3, column=1)
button8 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(8))
button8.grid(row=3, column=2)
button9 = Button(root, width=15, height=7, font=(
'Times 16 bold'), command=lambda: checker(9))
button9.grid(row=3, column=3)
root.mainloop()