Why is my code repeating after I run it? My computer programing teacher gave this code for tic tac toe that I have to fix and I don’t know how to make it stop repeating.
# Your name and period
# Sam Peterson A2
# Assignment
board = {'7': ' ' , '8': ' ' , '9': ' ' ,
'4': ' ' , '5': ' ' , '6': ' ' ,
'1': ' ' , '2': ' ' , '3': ' ' }
board_keys = []
for key in board:
board_keys.append(key)
def dis():
print(board['7'] + '|' + board['8'] + '|' + board['9'])
print('-+-+-')
print(board['4'] + '|' + board['5'] + '|' + board['6'])
print('-+-+-')
print(board['1'] + '|' + board['2'] + '|' + board['3'])
"""
if board[x-1] == ' ':
print("value already exist please enter new value")
#return dis() #input(board)
else:
return x
"""
player1 = input("player name 1:")
player2 = input("player name 2:")
dis()
turn = 'X'
count = 0
for i in range(10):
dis()
print("\nIt's your turn," + turn + ". Move to which place?")
while True:
numLst = ["9", "8" ,"7", "6", "5", "4", "3", "2", "1"]
move = input()
i = move
if i in numLst:
a=0
while True:
a+=1
if a == 10:
print("RESULT : ", a)
break
else:
print("Please enter a valid number in the correct position. -- use the numpad.")
continue
if board[move] == ' ':
theBoard[move] = turn
count += 1
else:
print("That place is already filled.\nMove to which place?")
#continue
# Now we will check if player X or O has won,for every move after 5 moves.
if count >= 5:
if theBoard['7'] == theBoard['8'] == theBoard['9'] != ' ': # across the top
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
elif theBoard['4'] == theBoard['5'] == theBoard['6'] != ' ': # across the middle
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
elif theBoard['1'] == theBoard['2'] == theBoard['3'] != ' ': # across the bottom
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
elif theBoard['1'] == theBoard['4'] == theBoard['7'] != ' ': # down the left side
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " +turn + " won. ****")
#break
elif theBoard['2'] == theBoard['5'] == theBoard['8'] != ' ': # down the middle
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
elif theBoard['3'] == theBoard['6'] == theBoard['9'] != ' ': # down the right side
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
elif theBoard['7'] == theBoard['5'] == theBoard['3'] != ' ': # diagonal
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
elif theBoard['1'] == theBoard['5'] == theBoard['9'] != ' ': # diagonal
printBoard(theBoard)
print("\nGame Over.\n")
print(" **** " + turn + " won. ****")
#break
for i in range(109):
if i %2 == 0:
x = inp(board)
for key in board:
board_keys.append(key)
"""
board[x-1] = 'x'
if check(board)== True:
print('player 1 win')
break
"""
else:
x = inp(board)
board[x-1] = 'o'
dis()
if check(board)== True:
print('player 2 win')
break
print('over')