-
Notifications
You must be signed in to change notification settings - Fork 485
/
TicTaToe.py
49 lines (39 loc) · 1.36 KB
/
TicTaToe.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
def print_board(board):
for row in board:
print(" | ".join(row))
print("-" * 9)
def check_winner(board, player):
for i in range(3):
if all(board[i][j] == player for j in range(3)):
return True
if all(board[j][i] == player for j in range(3))
return True
if all(board[i][i] == player for i in range(3)) or all(board[i][2 - i] == player for i in range(3)):
return True
return False
def is_full(board):
return all(board[i][j] != ' ' for i in range(3) for j in range(3))
def tic_tac_toe():
board = [[" " for _ in range(3)] for _ in range(3)]
current_player = "X"
print("Welcome to Tic-Tac-Toe!")
print_board(board)
while True:
print(f"Player {current_player}'s turn")
row = int(input("Enter the row (0, 1, or 2): ")
col = int(input("Enter the column (0, 1, or 2): ")
if board[row][col] == " ":
board[row][col] = current_player
else:
print("Invalid move! Try again.")
continue
print_board(board)
if check_winner(board, current_player):
print(f"Player {current_player} wins!")
break
elif is_full(board):
print("It's a tie!")
break
current_player = "O" if current_player == "X" else "X"
if __name__ == "__main__":
tic_tac_toe()