continued unittesting
This commit is contained in:
@@ -21,7 +21,8 @@ class Printer:
|
||||
|
||||
def playermove(self, player1, player1_char, player2_char):
|
||||
while True:
|
||||
next_move_x = int(input(f"Player {1 if player1 else 2} ({player1_char if player1 else player2_char}), please choose the x (horizontal) coordinates of your next move: "))
|
||||
next_move_x = int(input(f"Player {1 if player1 else 2} ({player1_char if player1 else player2_char}), "
|
||||
f"please choose the x (horizontal) coordinates of your next move: "))
|
||||
if next_move_x in list(range(3)):
|
||||
break
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user