どこでも検索しましたが、このエラーに関するいくつかの質問と回答がありましたが、問題を解決する解決策が見つかりませんでした
文字と数字を含むファイルから読み込んでおり、そのファイルの値に応じてマトリックスを作成しています。例: 文字と数字のファイル記述 ... テーブル:
a b c d
a 1 2 5 6
b 5 6 3 4
c 3 2 1 4
d 2 4 6 8
これがコードです
matrix = [[0 for j in range(4)] for i in range(4)]
i = 0
j = 0
for line in file:
for a in line:
if is_number(a):
matrix[i][j] = int(a)
j+= 1
if matrix.count(0) < 2: #since matrix already populated with zeroes. it shouldn't have
#many per program specifications, that's why I use this
#conditional to increment i and reset j back to 0
i += 1
j = 0
file.close()
なぜそのエラーが発生し続けるのかわかりません。