python九宫格代码
时间: 2023-10-14 11:29:37 浏览: 127
以下是一个简单的Python九宫格代码:
```
def print_board(board):
for row in range(0, 9):
if row % 3 == 0 and row != 0:
print("------+-------+------")
for col in range(0, 9):
if col % 3 == 0 and col != 0:
print("| ", end="")
print(board[row][col] + " ", end="")
print()
board = [
["5", "3", "", "", "7", "", "", "", ""],
["6", "", "", "1", "9", "5", "", "", ""],
["", "9", "8", "", "", "", "", "6", ""],
["8", "", "", "", "6", "", "", "", "3"],
["4", "", "", "8", "", "3", "", "", "1"],
["7", "", "", "", "2", "", "", "", "6"],
["", "6", "", "", "", "", "2", "8", ""],
["", "", "", "4", "1", "9", "", "", "5"],
["", "", "", "", "8", "", "", "7", "9"],
]
print_board(board)
```
希望对你有所帮助!
阅读全文