Skip to content

Instantly share code, notes, and snippets.

@Gustavoo151
Created February 23, 2021 23:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gustavoo151/47d7f54a2dea95dba2f16715ea54d5a2 to your computer and use it in GitHub Desktop.
Save Gustavoo151/47d7f54a2dea95dba2f16715ea54d5a2 to your computer and use it in GitHub Desktop.
Tradutor
# Tradutor
frase = input('Digite em inglês: ')
from translate import Translator
traduzir = Translator(from_lang="English", to_lang="Portuguese")
traducao = traduzir.translate(frase)
print(traducao)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment