我正在使用python开发一个非常基础的翻译应用程序。从本质上讲,它将把您输入的任何内容输入到输入框中,替换一些字母(例如,将“ a”变成“ u”),然后将其显示为标签。不幸的是,您输入的单词永远不会被翻译,只会保持原样。控制台中没有错误出现。这是应该执行此操作的代码部分:
eword = StringVar()
Entry1 = Entry(root, textvariable=eword, width=30, bg="lightgrey").place(x=250, y=155)
def translate(eword):
translation = ""
for letter in eword:
if letter in "a":
translation = translation + "e"
elif letter in "m":
translation = translation + "n"
else:
translation = translation + letter
return translation
def doit():
text = eword.get()
label3 = Label(root, text=text, font=("Arial", 20), bg="white").place(x=195, y=300)
return
我绝对是python的初学者,所以请简单地解释一下。
答案 0 :(得分:2)
我稍微调整了布局并添加了必要的代码以使其运行。
StringVar不是普通的字符串。要读取其值,您需要使用方法get()
,而要使用set()
对其进行写入。
创建条目时:Entry1 = Entry(root, ...).place(x=250, y=155)
变量Entry1
将获得值None
,因为这是place()
返回的结果。我将条目的创建与窗口上的放置分开。另外,我使用的是pack()
而不是place()
。
我添加了一个按钮来启动翻译,因为我在您的代码中找不到任何机制。按下该按钮将调用功能translate()
。
from tkinter import *
root = Tk() # Application main window
root.geometry('300x200') # Setting a size
eword = StringVar()
entry1 = Entry(root, textvariable=eword, width=30)
entry1.pack(pady=20) # Pack entry after creation
def translate():
original = eword.get() # Read contents of eword
translation = ""
for letter in original:
if letter in "a":
translation = translation + "e"
elif letter in "m":
translation = translation + "n"
else:
translation = translation + letter
new_text.set(translation) # Write translation to label info
action = Button(root, text='Translate', command=translate)
action.pack() # Pack button after creation
new_text = StringVar()
info = Label(root, textvariable=new_text)
info.pack(pady=20)
root.mainloop()
您可以使用replace()
来代替遍历字符串:
original.replace('a', 'e')
original.replace('m', 'n')
您可能还想研究字符串函数translate()
:)