如何在python中的2D数组中找到值?

2024-09-30 08:16:52 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在为学校做一个棋盘游戏,我想能够找到他们的位置编号索引,并用他们的计数器(“x”或“y”)替换棋盘上的编号。

board = [
    ["43","44","45","46","47","48","49"],
    ["42","41","40","39","38","37","36"],
    ["29","30","31","32","33","34","35"],
    ["28","27","26","25","24","23","22"],
    ["15","16","17","18","19","20","21"],
    ["14","13","12","11","10","9 ","8 "],
    ["1 ","2 ","3 ","4 ","5 ","6 ","7 "]

    ]

for line in board:
    print (line)
roll = input("Player " + player + " press enter to roll the dice")
print ("Your counter is",counter)

if roll != "blablabla":
    die1 = random.randint(1,6)
    die2 = random.randint(1,6)
    dice = die1 + die2
    print (die1)
    print (die2)
    print ("You rolled",dice)

if player == "one":
    place1 =(place1+dice)
    print ("P1's place is",place1)
else:
    place2 =(place2+dice)
    print ("P2's place is",place2)

我怎样才能在电路板中找到字符串版本的“place1”或“place2”,并用其他内容替换该索引?

谢谢你!


Tags: board棋盘ifislinecounterdice编号
3条回答

ind = np.where(np.array(board) == str(place1))将返回board数组中所有元素的索引,等于place。要替换这些值,请执行以下操作:board[ind] = newval

基本上

import numpy as np
ind = np.where(np.array(board) == str(place1))
board[ind] = newval

您需要遍历主列表,然后可以使用list.index()查找子列表索引,例如:

def index_2d(data, search):
    for i, e in enumerate(data):
        try:
            return i, e.index(search)
        except ValueError:
            pass
    raise ValueError("{} is not in list".format(repr(search)))

它的作用与list.index()完全一样,但对于二维数组,在您的情况下:

position = index_2d(board, "18")  # (4, 3)
print(board[position[0]][position[1]])  # 18

position = index_2d(board, "181")  # ValueError: '181' is not in list

我在下面加了一行。数组接受整数值,但不接受元组/列表。上面@zwer已经给出了代码片段的下面一行。感谢@zwer。

board[position[0]][position[1]] = 'Replaced'



def index_2d(data, search):
    for i, e in enumerate(data):
        try:
            return i, e.index(search)
        except ValueError:
            pass
    raise ValueError("{} is not in list".format(repr(search)))


board = [
    ["43","44","45","46","47","48","49"],
    ["42","41","40","39","38","37","36"],
    ["29","30","31","32","33","34","35"],
    ["28","27","26","25","24","23","22"],
    ["15","16","17","18","19","20","21"],
    ["14","13","12","11","10","9 ","8 "],
    ["1 ","2 ","3 ","4 ","5 ","6 ","7 "]

    ]

position = index_2d(board, "21")
board[position[0]][position[1]] = 'Replaced'
print("{}".format(board))

输出将类似,注意“替换”在其中。

[
['43', '44', '45', '46', '47', '48', '49'], 
['42', '41', '40', '39', '38', '37', '36'], 
['29', '30', '31', '32', '33', '34', '35'], 
['28', '27', '26', '25', '24', '23', '22'], 
['15', '16', '17', '18', '19', '20', 'Replaced'], 
['14', '13', '12', '11', '10', '9 ', '8 '], 
['1 ', '2 ', '3 ', '4 ', '5 ', '6 ', '7 ']
]

相关问题 更多 >

    热门问题