This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmilestone_proj1.py
140 lines (108 loc) · 3.8 KB
/
milestone_proj1.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
'''
Simple TicTacToe implementation
'''
import random
def display_board(board):
print(' | |')
print(' ' + board[7] + ' | ' + board[8] + ' | ' + board[9])
print(' | |')
print('-----------')
print(' | |')
print(' ' + board[4] + ' | ' + board[5] + ' | ' + board[6])
print(' | |')
print('-----------')
print(' | |')
print(' ' + board[1] + ' | ' + board[2] + ' | ' + board[3])
print(' | |')
test_board = ['#','X','O','X','O','X','O','X','O','X']
# display_board(test_board)
def player_input():
marker = ''
while not (marker == 'O' or marker == 'X'):
marker = input('Please pick X or O: ').upper()
if marker == 'X':
return ('X', 'O')
else:
return ('O', 'X')
# player_input()
def place_marker(board,marker,position):
board[position] = marker
# place_marker(test_board,'$',8 )
# display_board(test_board)
def win_check(board,mark):
return ((board[7] == mark and board[8] == mark and board[9] == mark) or # across the top
(board[4] == mark and board[5] == mark and board[6] == mark) or # across the middle
(board[1] == mark and board[2] == mark and board[3] == mark) or # across the bottom
(board[7] == mark and board[4] == mark and board[1] == mark) or # down the middle
(board[8] == mark and board[5] == mark and board[2] == mark) or # down the middle
(board[9] == mark and board[6] == mark and board[3] == mark) or # down the right side
(board[7] == mark and board[5] == mark and board[3] == mark) or # diagonal
(board[9] == mark and board[5] == mark and board[1] == mark)) # diagonal
print(win_check(test_board,'O'))
def choose_first():
if random.randint(0,1) == 0:
return 'Player 2'
else:
return 'Player 1'
def check_available(board,position):
return board[position] == ' '
def check_board_full(board):
for cell in range(0,len(board)):
if check_available(board,cell):
return False
else:
return True
def player_choice(board):
position = 0
while position not in range(1,10) or not check_available(board,position):
position = int(input('Choose your next position: (1-9) '))
return position
def replay():
return input("Play again? (y/n): ") == "y".lower()
# -------------------------
# MAIN
# -------------------------
greeting = 'Welcome to TicTacToe'
while True:
print(greeting)
print('-' * len(greeting))
TheBoard = [' '] * 10
game_on = True
player1_marker, player2_marker = player_input()
turn = choose_first()
print(turn + " plays first. Go!")
while game_on:
if turn == "Player 1":
# Player 1
display_board(TheBoard)
position = player_choice(TheBoard)
place_marker(TheBoard,player1_marker,position)
if win_check(TheBoard,player1_marker):
display_board(TheBoard)
print('You won!')
game_on = False
else:
if check_board_full(TheBoard):
display_board(TheBoard)
print('The game is a draw...')
break
else:
turn = 'Player 2'
else:
# Player 2
display_board(TheBoard)
position = player_choice(TheBoard)
place_marker(TheBoard,player2_marker,position)
if win_check(TheBoard,player2_marker):
display_board(TheBoard)
print('You won!')
game_on = False
else:
if check_board_full(TheBoard):
display_board(TheBoard)
print('The game is a draw...')
break
else:
turn = 'Player 1'
if not replay():
break