I am working with TKinter in Python 2.7, I cannot seem to get the value out of this entry object and I cannot figure out why.
def compute():
a = float(side_one_entry.get())
side_one_entry = Entry(justify=CENTER).grid(row=1, column=2, columnspan=2)
go_button = Button(root, text="GO", command=compute).grid(row=10, columnspan=4)
I am crashing at the a = ... line. I have double checked that all rows columns line up correctly