-1
caption_text=u'{"confidence_score": 0.847656, "sentence_type": "Abusive"}'
for i in caption_text:
if i['sentence_type']=='Abusive':
print i['confidence_score']
TypeError: string indices must be integers
我使用的數據= json.loads(caption_text)得到這個:錯誤「的Unicode」對象有沒有屬性「讀」 @Martijn Pieters的♦ –
@ArpitKamal:檢查你的拼寫。你可能在最後寫了'json.load()',沒有's'。它是''json.loads()'與's';另一個函數從文件中讀取數據。 –