入力ボックスにテキストを入力し、ボタンをクリックすると下にテキストが表示されるプログラムを作成しようとしていますが、ボタンをクリックするとすぐにエラーが発生しますか?
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()