''' Purpose: use polygot module to translate user-supplied text ''' # import needed modules import polyglot # local module supporting text translation # get the text from the user txet = input( 'Enter text to be translated: ' ) # print the text to be translated print( txet ) print( '\n-----------------------------------------\n' ) ###