[Solved] Tkinter Python 3.3.2 calculator [closed]


You can use an instance of a tkinter Label widget for the display, and a group of tkinter Button widgets for the buttons. Use the grid geometry manager to organize them on the screen. You can associate each button with a command that will either add a number to an internal register, or perform a calculation on the number(s) in the register.

Start by working through a tkinter tutorial to understand the basics, and that should give you more than enough information to create a calculator since you only need a couple of fundamental widget types.

solved Tkinter Python 3.3.2 calculator [closed]