在python中的战舰游戏

时间:2012-04-17 19:39:14

标签: python

我正在用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]

我正在尝试编写一个允许用户输入一个点的函数,如果输入在列表中,它应该返回命中。如果不是它将返回未命中。

这是我到目前为止所做的:

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)

到目前为止,它确定输入是否在列表中,但它返回五次,我只希望它返回一次。我只能使用基本代码,因为我不太了解高级工作。

1 个答案:

答案 0 :(得分:3)

您可以在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)