4
array = 3列のデータとその中のデータを含む無制限の行数のリストです。TypeError:リストインデックスは、リストではなく、整数またはスライスでなければなりません。
Volume = array[0][2]
counter = 0
for i in array:
if Volume == array[i][2]: #<------ why is this line a problem?
counter += 1
完璧、ありがとう! – Michael