配列の [0][0] エントリが 1 または 2 に等しくない場合、プログラムがエラー メッセージを出力するという条件を作成しようとしています。私はそれを機能させることができません。それは、ロジックを正しくできないことが原因であることを知っています。
try:
with open(input_script) as input_key:
for line in input_key.readlines():
x=[item for item in line.split()]
InputKey.append(x)
if InputKey[0][0] == 1 or 2: #This is where my condition is being tested.
print '.inp file succesfully imported' #This is where my success (or fail) print comes out.
else:
print 'failed'
except IOError:
print '.inp file import unsuccessful. Check that your file-path is valid.'