''' 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); '''
Log in or sign up for Devpost to join the conversation.