MCPcopy Create free account
hub / github.com/geekcomputers/Python / introduction

Function introduction

Tic-Tac-Toe Games/tic-tac-toe5.py:23–27  ·  view source on GitHub ↗

Print game introduction.

()

Source from the content-addressed store, hash-verified

21
22
23def 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
30def draw_board(board: List[str]) -> None:

Callers 1

mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected