谷歌 Colab Python 中的谷歌翻译

时间:2021-05-12 09:04:03

标签: python google-colaboratory google-translate

我想在 Python 中使用谷歌翻译器将文本从一种语言翻译成英语。我正在使用 google colab 编写代码。
翻译[元素] = translates.translate(element).text。 我收到属性错误。 AttributeError: 'NoneType' 对象没有属性 'group'

1 个答案:

答案 0 :(得分:1)

我不知道 google colab 但他们有很多教程

https://pypi.org/project/googletrans/

这是其中一个例子:

>>> from googletrans import Translator
>>> translator = Translator()
>>> translator.detect('이 문장은 한글로 쓰여졌습니다.')
# <Detected lang=ko confidence=0.27041003>
>>> translator.detect('この文章は日本語で書かれました。')
# <Detected lang=ja confidence=0.64889508>
>>> translator.detect('This sentence is written in English.')
# <Detected lang=en confidence=0.22348526>
>>> translator.detect('Tiu frazo estas skribita en Esperanto.')
# <Detected lang=eo confidence=0.10538048>

对不起,这是我第一次回答堆栈溢出问题。 您可以发送您的代码,以检查您的错误