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

Function print_board

tik_tak.py:10–22  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8
9
10def print_board():
11 # import os
12 # os.system('cls')
13 print("\n\n")
14 print(" | |")
15 print("", board[1], " | ", board[2], " | ", board[3])
16 print("____|_____|____")
17 print(" | |")
18 print("", board[4], " | ", board[5], " | ", board[6])
19 print("____|_____|____")
20 print(" | |")
21 print("", board[7], " | ", board[8], " | ", board[9])
22 print(" | |")
23
24
25def enter_number(p1_sign, p2_sign):

Callers 2

enter_numberFunction · 0.70
playFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected