2

我正在用python创建一个战舰游戏。我创建了一个 10X10 的板,看起来像这样。

-------------------------------------------------
 1 |  2 |  3 |  4 |  5 |  6 |  7 |  8 |  9 | 10 | 
-------------------------------------------------
11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 
-------------------------------------------------
21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 
-------------------------------------------------
31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 
-------------------------------------------------
41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 
-------------------------------------------------
51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 
-------------------------------------------------
61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 
-------------------------------------------------
71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 
-------------------------------------------------
81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 
-------------------------------------------------
91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100| 
-------------------------------------------------

现在我有一个船舶所在位置的列表:s = [[21,22,23,24,25], [45,55,65,75], [1,2,3], [85, 86,87], [5,15], [46,56]]

我正在尝试编写一个允许用户输入某个位置的函数,如果输入在 list 中,它应该返回 hit。如果没有,它将返回错过。

这是我到目前为止所拥有的:

def createBoard():
    board=[]
    for i in range(10):
        board.append(str(i)+" ")
    for j in range(10,100):
        board.append(j)
    return(board)
def printBoard(board):
    for i in range(0,100,10):
        print("\n"+"-"*45)
        for j in range(1,10,1):
            print(board[i+j],"|",end=" ")
    print("\n"+"-"*45)
printBoard(createBoard())

position=int(input("Choose position on the board"))
g="Miss"
a="hit"
s = [[21,22,23,24,25],
    [45,55,65,75],
    [1,2,3],
    [85,86,87],
    [5,15],
    [46,56]]
for i in range(0,len(s),1):
    if position in s[i]:
        print(a)
    elif position not in s[i]:
        print(g)

到目前为止,它会发现输入是否在列表中,但它会返回五次,我只希望它返回一次。我只能使用基本代码,因为我不知道很多高级工作。

4

2 回答 2

4

您可以在print(a). 这将退出(跳出)for 循环。

编辑:

就目前而言,如果您错过了它,它也会打印出 5 次。您需要在循环之前设置一些变量,并且只有在您检查了所有船只之后,如果您还没有找到一个,则将其打印出来(仅一次,在循环外)

    found = False
    for i in range(0,len(s),1):
        if position in s[i]:
            print(a)
            found = True
            break
    if not found:
        print(g)
于 2012-04-17T19:45:11.703 回答
0

你去吧。您可以使用该any功能。如果一艘船被击中,它将返回 true。虽然,如前所述,对于更高级的游戏版本,我也建议使用 2d 数组

def print_board():
    def print_separator():
        print("-"*51)

    for i in range(0, 100, 10):
        print_separator()
        field_string = " | ".join(['{:2d}'.format(i+j) for j in range(0, 10)])
        print(f'| {field_string} |')
    print_separator()

print_board()

ships = [[21,22,23,24,25],
    [45,55,65,75],
    [1,2,3],
    [85,86,87],
    [5,15],
    [46,56]]

def is_hit(position):
    return any([position in ship_location for ship_location in ships])

def evaluate_position(position):
    print("hit" if is_hit(position) else "Miss")

while 1:
    pos = input("Choose position on the board: ")
    if(pos == "exit"):
        exit()
    
    evaluate_position(int(pos))
于 2021-12-03T22:04:21.550 回答