Print game introduction.
()
| 21 | |
| 22 | |
| 23 | def introduction() -> None: |
| 24 | """Print game introduction.""" |
| 25 | print("Welcome to Tic Tac Toe!") |
| 26 | print("Player is X, Computer is O.") |
| 27 | print("Board positions 1-9 (bottom-left to top-right).") |
| 28 | |
| 29 | |
| 30 | def draw_board(board: List[str]) -> None: |