1. ホーム
  2. python

[解決済み] Python インデックスエラー value not in list...on .index(value)

2022-02-20 02:33:21

質問

私はPythonの初心者です。私の投稿に対して否定的な考えをお持ちの方はお帰りください。私は単にここで助けを求め、学ぼうとしています。私は、単純なデータセット内の0と1をチェックしようとしています。これは、建物のゾーンを定義するために、フロアプラン上のボイドとソリッドを定義するために使用されます...最終的には0と1は座標に置き換えられます。

このようなエラーが出ています。ValueError: [0, 3] is not in list

私は単に、あるリストが他のリストに含まれているかどうかをチェックしているだけです。

currentPosition's value is  [0, 3]
subset, [[0, 3], [0, 4], [0, 5], [1, 3], [1, 4], [1, 5], [2, 1], [3, 1], [3, 4], [3, 5], [3, 6], [3, 7]]

以下は、そのコード・スニペットです。

def addRelationship(locale, subset):
    subset = []; subSetCount = 0
    for rowCount in range(0, len(locale)):
        for columnCount in range (0, int(len(locale[rowCount])-1)):
            height = len(locale)
            width = int(len(locale[rowCount]))
            currentPosition = [rowCount, columnCount]
            currentVal = locale[rowCount][columnCount]
            print "Current position is:" , currentPosition, "=", currentVal

            if (currentVal==0 and subset.index(currentPosition)):
                subset.append([rowCount,columnCount])
                posToCheck = [rowCount, columnCount]
                print "*********************************************Val 0 detected, sending coordinate to check : ", posToCheck

                newPosForward = checkForward(posToCheck)
                newPosBackward = checkBackward(posToCheck)
                newPosUp = checkUpRow(posToCheck)
                newPosDown = checkDwnRow(posToCheck)

subset.index(currentPosition) を使って、[0,3] がサブセットに含まれているかどうかを調べていますが、[0,3] はリストに含まれていません。どうしてですか?

どうすればいいですか?

同じエラーを投げる同等のコードを示してみましょう。

a = [[1,2],[3,4]]
b = [[2,3],[4,5]]

# Works correctly, returns 0
a.index([1,2])

# Throws error because list does not contain it
b.index([1,2])

何かがリストに含まれているかどうかを知る必要がある場合は、このキーワードを使用します。 in このように

if [1,2] in a:
    pass

また、正確な位置が必要だがリストに含まれているかどうかわからない場合、エラーをキャッチしてプログラムがクラッシュしないようにすることもできます。

index = None

try:
    index = b.index([0,3])
except ValueError:
    print("List does not contain value")