Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 1

Python Translator use to Translate the language

from translate import Translator


import easygui

language_code = easygui.enterbox("Enter the language: ")


translator = Translator(language_code)

text = easygui.enterbox("Enter the phrase: ")


translation = translator.translate(text)

easygui.msgbox(translation)

You might also like