gpt4 book ai didi

python - 为什么控制台说我的 print "".join(row) 函数有问题?

转载 作者:太空宇宙 更新时间:2023-11-03 19:01:59 25 4
gpt4 key购买 nike

import random

print "Welcome to my mastermind game. instead of colors, \
we will be using numbers, one through six \
(red is left, white is right)"

board = []
for x in range(0, 10):
board.append(["O"]*4)

def mastermind_board(board):
for row in board:
print " ".join(row)

...
mastermind_board(board)
turn + 1

print "".join(row) 行是存在问题的地方,提交第一项后,它会出现错误(点是对问题不重要的额外代码)

最佳答案

该代码没有任何问题,我只是在机器上尝试过。如果您使用的是 Python 3.3,则需要在打印函数中包含括号。尝试:

print(" ".join(row))

这是我得到的输出:

O O O O
O O O O
O O O O
O O O O
O O O O
O O O O
O O O O
O O O O
O O O O
O O O O

关于python - 为什么控制台说我的 print "".join(row) 函数有问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15800841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com