いつもお世話になりありがとうございます。
下記プログラムにてタイトルの通り、メッセージが出ます。
どうおかしいのでしょうか?
ご回答のほど宜しくお願い申し上げます。
from cgitb import text
import tkinter
window = tkinter.Tk()
window.title('足し算')
window.minsize(400,400)
Entry1=tkinter.Entry(font=("ゴシック",20),width=5,bg='blue')
Entry1.place(x=30,y=65)
textplace=tkinter.Label(font=("ゴシック",20),text='+')
textplace.place(x=120,y=65)
Entry2=tkinter.Entry(font=("ゴシック",20),width=5,bg='blue')
Entry2.place(x=160,y=65)
text2=tkinter.Label(font=("ゴシック",20),text='=')
text2.place(x=250,y=65)
kotae_text=tkinter.Label(text"",font=("ゴシック",20))
kotae_text.place(x=300,y=65)
button=tkinter.Button(text='結果は?',font=("ゴシック",20),bk='blue',activebackground="blue")
button.place(x=150,y=150)
def kekka():
suuji1=Entry1.get()
suuji1=int(suuji1)
suuji2=Entry2.get()
suuji2=int(suuji2)
kotae_text['text']=suuji1+suuji2
button['command']=kekka
window.mainloop()
お礼
早々のご回答、誠にありがとうございました。