我正在尝试从用户那里获取文本输入并将其保存在名为newLine的变量中。当我打印newLine时,我得到了没有' 我无法将用户的输入保存到变量,请帮助,我做错了什么?
top = Tk()
L1 = Label(top, text="Enter new line").pack()
E1 = Entry(top).pack()
Button(top, text="OK", command=top.quit).pack()
top.mainloop()
newLine = str(E1)
print(newLine)
答案 0 :(得分:0)
看一下.get函数。
此外,请看以下链接:
Why is Tkinter Entry's get function returning nothing?
How to get text from Entry widget
他们会帮助你。