Q:

how to translate with python

#pip or conda install googletrans
from googletrans import Translator
translator = Translator()
#you can specify the translate languege
result = translator.translate('Mitä sinä teet',dest='en')
print(result.text)
2

New to Communities?

Join the community