Hepinize iyi akşamlar.Tkinterde acemiyim.Aşağıdaki kodu anlayarak yazdım ama cevabı yazdıramıyorum . Googlede buldum gibi ama anlayamadım.Nerede hata yapıyorum, açık açık izah eden bir arkadaş olursa sevinirim.
from tkinter import*
root=Tk()
root.geometry("300x200")
def topla():
s1=int(e1.get())
s2=int(e2.get())
sonuc=s1+s2
e3.config(Text=sonuc)
l1=Label(text="1. sayıyı gir").place(x=10,y=10)
e1=Entry().place(x=90, y=15)
l1=Label(text=" 2.sayıyı gir").place(x=10 ,y=40)
e2=Entry().place(x=90 ,y=40)
e3=Label(text="").place(x=90 ,y=70)
btn=Button(text="topla",command=topla).place(x=100 ,y=100,width=70)
root.mainloop()