我使用python中的管道,使用以下指令将评论翻译成英语
translated = pipe(reviews['review'][0])
结果是一个列表:
[{'translation_text':'非常好。整洁,员工乐于助人。}]
我只想要这一部分 “太好了。清洁和乐于助人的员工。” 待打印。
我该怎么做?
您可以索引到列表和字典中——使用 [0] ,并使用 ['translation_text'] :
[0]
['translation_text']
translated = pipe(reviews['review'][0])[0]['translation_text']