#-*-coding:utf-8-*-
from Tkinter import *  必须这样取模块  基本格式
root = Tk()
root.geometry('500x400') #  限定文本框的大小
label=Label(root,text = '翻译器',fg ='blue',font= ('黑体',13))  #文本框的名字,颜色,字体大小
text1 =Text(root,width = 20,height=5,font=('黑体',13)) #定义一个文本框宽,高,字体
text2=Text(root,width=20,height=5,font=('黑体',13))
text2.insert(END,'请在上边输入文字')  在文本框里插入文字
button = Button(text='开始翻译',fg='black') #在最下边加入按钮,并命名
label.pack()
text1.pack()
text2.pack()
button.pack()
root.mainloop()