diff --git a/Tic_tac_toe_game_in_python.py b/Tic_tac_toe_game_in_python.py index 0049a4ba..4beedf46 100644 --- a/Tic_tac_toe_game_in_python.py +++ b/Tic_tac_toe_game_in_python.py @@ -18,7 +18,7 @@ def printBoard(xState, zState): print(f"--|---|---") print(f"{four} | {five} | {six} ") print(f"--|---|---") - print(f"{senven} | {eight} | {nine} ") + print(f"{seven} | {eight} | {nine} ") def checkWin(xState, zState): wins = [[0, 1, 2], [3, 4, 5], [6, 7, 8], [0, 3, 6], [1, 4, 7], [2, 5, 8], [0, 4, 8], [2, 4, 6]] @@ -53,4 +53,4 @@ def checkWin(xState, zState): print("Match Over") break - turn = 1 - turn \ No newline at end of file + turn = 1 - turn