-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
85 lines (76 loc) · 2.26 KB
/
main.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
""" TicTacToe """
from os import system
import sys
table:list = [[None, None, None], [None, None, None], [None, None, None]]
end_game:bool = False
def list_sameitem(lst, eqt):
""" """
for i in range(len(lst)):
if not lst[i] == eqt:
return False
break
else:
return True
def fancy_table():
return f"""
┌─1─╥─2─╥─3─┐
1 {table[0][0]} ║ {table[0][1]} ║ {table[0][2]} │
╞═══╬═══╬═══╡
2 {table[1][0]} ║ {table[1][1]} ║ {table[1][2]} │
╞═══╬═══╬═══╡
3 {table[2][0]} ║ {table[2][1]} ║ {table[2][2]} │
└───╨───╨───┘
""".replace('None', ' ').replace('False', 'X').replace('True', 'O')
def wincheck():
win_table = [
[table[0][0], table[1][0], table[2][0]],
[table[0][1], table[1][1], table[2][1]],
[table[0][2], table[1][2], table[2][2]],
[table[0][0], table[0][1], table[0][2]],
[table[1][0], table[1][1], table[1][2]],
[table[2][0], table[2][1], table[2][2]],
[table[0][0], table[1][1], table[2][2]],
[table[0][2], table[1][1], table[2][0]]
]
global end_game
for l in win_table:
if list_sameitem(l, True):
print('o wins')
print('Thanks for playing!')
end_game=True
break
if list_sameitem(l, False):
print('x wins')
print('Thanks for playing!')
end_game=True
break
# ┌─1─╥─2─╥─3─┐
# 1 X ║ O ║ X │
# ╞═══╬═══╬═══╡
# 2 O ║ X ║ O │
# ╞═══╬═══╬═══╡
# 3 X ║ O ║ X │
# └───╨───╨───┘
dafe:int = 0
system('cls')
print(fancy_table())
while not end_game:
wincheck()
if end_game: break;
if dafe%2==0:
try:
cord = input('X: ')
except KeyboardInterrupt:
system('cls')
sys.exit()
table[int(cord[1])-1][int(cord[0])-1] = False
else:
try:
cord = input('O: ')
except KeyboardInterrupt:
system('cls')
sys.exit()
table[int(cord[1])-1][int(cord[0])-1] = True
system('cls')
print(fancy_table())
dafe+=1