“Tłumacz Google Python” Kod odpowiedzi

Tłumacz Google Python

from deep_translator import GoogleTranslator
print(GoogleTranslator('auto','en').translate('Hola!'))
yungmaz13

Tłumacz Google z Pythonem

# install
# pip install googletrans

from googletrans import Translator
translator = Translator()
result = translator.translate('Mitä sinä teet')
print(result)

# result : 
#Translated(src=fi, dest=en, text=What are you doing, pronunciation=None, extra_data="{'confiden...")
Shanti

Python Google Tłumacz

#!/usr/bin/env python

from googletrans import Translator

translator = Translator()

translated = translator.translate('svízelná situace', src='cs', dest='hu')

print(translated.text)
Jerome Scott

Odpowiedzi podobne do “Tłumacz Google Python”

Pytania podobne do “Tłumacz Google Python”

Więcej pokrewnych odpowiedzi na “Tłumacz Google Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu