У меня есть датафрейм с именем output, который выглядит как -
output
Out[48]:
({'results': [{'alternatives': [{'confidence': 0.82,
'transcript': 'thank you for calling a AA health insurance my name is Dick right the pleasure of speaking with '}],
'final': True},
{'alternatives': [{'confidence': 0.57, 'transcript': 'hi Nick this is '}],
'final': True},
{'alternatives': [{'confidence': 0.78,
'transcript': 'hi Julie I think we talked earlier we did '}],
'final': True},
{'alternatives': [{'confidence': 0.86,
'transcript': "thing else comes up or you have any questions just don't hesitate to call us okay okay thank you so much yeah you're very welcome you have a great rest your day okay you too bye bye "}],
'final': True}],
'result_index': 0},)
Я пытаюсь получить доступ только к «транскрипту» и преобразовать его в фрейм данных в csv. Я пытался -
output.to_csv("script.csv")
Traceback (most recent call last):
File "<ipython-input-44-85a7c839323b>", line 1, in <module>
output.to_csv("script.csv")
AttributeError: 'tuple' object has no attribute 'to_csv'
Я также пытался просто получить доступ к расшифровке, но я получил ту же ошибку ниже -
print(output['results'][0]['alternatives'][0]['transcript'])
Traceback (most recent call last):
File "<ipython-input-49-03a8e1a518ee>", line 1, in <module>
print(output['results'][0]['alternatives'][0]['transcript'])
TypeError: tuple indices must be integers or slices, not str
Как мне избежать этой ошибки?