用python 制作简易西班牙语翻译软件,首先调用python tk
然后建立root,完成界面:
root.title("西班牙语-汉语智能记忆翻译器") #发明专利
root.geometry("500x300")
label=Label(root,text="请输入需要翻译的语句",fg="red",height=3,width=17)
label.pack()
exb=Button(root,text="退出",command=root.destroy)
bbt=Button(root,text="西语",command=blue)
ybt=Button(root,text="汉语",command=yellow)
exb.pack(anchor=S,side=RIGHT,padx=5,pady=5)
bbt.pack(anchor=S,side=RIGHT,padx=5,pady=5)
ybt.pack(anchor=S,side=RIGHT,padx=5,pady=5)
root.mainloop()
建立界面后设立背景颜色函数:
root.config(bg='yellow')
def blue():
root.config(bg='blue')
收取语句:
def pif():
print(wz.get())
def fyi():
print(str(wz.get()).upper())
之后建立标签和文本框:
namel.grid(row=0)
nameE=Entry(root)
nameE.grid(row=0,column=1)
随后导入数据库就可以翻译啦: