Ask the player if they want to play again.
()
| 60 | |
| 61 | |
| 62 | def play_again() -> bool: |
| 63 | """Ask the player if they want to play again.""" |
| 64 | print("Do you want to play again? (y/n)") |
| 65 | return input().lower().startswith("y") |
| 66 | |
| 67 | |
| 68 | def make_move(board: List[str], letter: str, move: int) -> None: |