我正在尝试制作一个程序,您可以在输入框中键入文本,然后当您单击一个按钮时,它会显示下面的文本,但是它不起作用,只要我单击该按钮它就会给我一个错误?
import sys
from tkinter import *
def myhello():
text = ment.get()
label = Label(text=entry).grid()
return
ment = str()
root = Tk()
root.title('Tutorial')
root.geometry('400x400')
button = Button(root, text='Button',command = myhello).place(x='160', y='5')
entry = Entry(textvariable=ment).place(x='5', y= '10 ')
root.mainloop()