''' python from googletrans import Translator sentence = str(input("Sentence:")); translator = Translator();

translating a sentence.

translated_sentence = translator.translate(sentence,src='en',dest='language to be which the sentence should be translated');

to print the translated sentence.

print(translated_sentence.text); '''

Built With

Share this project:

Updates