Ok new problem, I want to build off of a program I saw in a tutorial that has a "menu" and can calculate two different shapes. The two shapes are circle and rectangle. I've built it into a working order.(event bindings, buttons, area calculation programs) The program works all the way up to the done button(the button that begins calculation and prints it in a label) but when I click on the button it brings up a error message in the IDLE shell prompt that says that I can't do the following:
This is a snippet of the script to get you orented:
def answerSquare(event):
ansLabel = Label(root)
ansLabel.configure(text=' ')
ansLabel.configure(text='The area of your square is' + squareHight.get() * squareWidth.get()
^^both of these are entry fields later in the script and have global assigned to them.
Help appreciated :)