0
特定のデータを抽出するJsonファイルがあります。以下はJSONファイルです:jsonファイルの解析 - Python
{
"results": [ {
"alternatives": [ {
"word_confidence": [
[ "Ryan", 0.335 ],
[ "how's", 0.589 ],
[ "the", 1.0 ],
[ "weather", 1.0 ],
[ "in", 1.0 ],
[ "New", 1.0],
[ "York", 0.989 ],
[ "today", 0.987 ]
],
"confidence": 0.795,
"transcript": "Ryan how's the weather in New York today "
} ],
"final": true
} ],
"result_index": 0
}
このファイルを解析して「トランスクリプト」を抽出するにはどうすればよいですか?
'輸入JSON。 data = json.loads(json_string) ' –
@stephen 私は を使用しました。import json; 'u'results':[{u'transcript ':u "Ryan、今日のニューヨークの天気はいかがですか"、u'confidence' :0.795、u'word_confidence ':[u'Ryan'、0.335]、 'u'the'、 'u'the'、1.0 '、' u'weather '、1.0'、 'u'in' u'york '、0.989]、[u'today'、0.987]}]、u'final ':True}]、u'result_index':0}、[1.0]、[u'New ' ' 今、キー値「転写」のデータを抽出する必要があります。これを行う方法 –
この解決方法のための解決策 data = json.loads(json_data) text_data = data ["results"] [0] ["代替案]] [0] ["トランスクリプト"] –