We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2
# Import necessary modules
from tkinter import *
from tkinter import ttk from googletrans import Translator, LANGUAGES
# Create the main window
root = Tk() root.geometry('1100x320') # Set the window size root.resizable(0, 0) # Disable window resizing root['bg'] = 'pink' # Set background color root.title('Real-time translator') # Set window title