From 71e393729882919d4e827c6416477c66a0211880 Mon Sep 17 00:00:00 2001 From: neogeek23 Date: Sat, 13 May 2017 10:44:30 -0500 Subject: [PATCH] Update tictactoe.py Verbiage update. --- tictactoe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tictactoe.py b/tictactoe.py index e46cd10..619c580 100644 --- a/tictactoe.py +++ b/tictactoe.py @@ -320,7 +320,7 @@ while not board.is_full() and not board.has_winner(): if move_result == 2: print("Input Error on Coordinate. The number of indexes in your coordinate does not match the dimension.") if move_result == 3: - print("Input Error on Coordinate. That space described by your coordinate is already claimed.") + print("Input Error on Coordinate. That space is already claimed.") print("Remaining attempts: " + str(3 - move_attempts) + " failure will result in random placement.") coordinate_move = input("\nPlayer " + str(player_to_play + 1) + " please input coordinates (.. ... .<3rd index>..) to place your '"