This is a simple GUI Calculator built using Python's Tkinter library. The calculator can handle basic arithmetic operations such as addition, subtraction, multiplication, and division.
Perform basic arithmetic operations (Addition, Subtraction, Multiplication, Division). Supports decimal inputs. Clear functionality to reset the input. Simple and clean user interface using Tkinter.
When you press a number button, it appends the number to the current input. The input is displayed on the calculator's screen using a Label widget.
You can perform operations by pressing the operator buttons like +, -, *, and /. The input string is evaluated using Python's eval() function when the equals (=) button is pressed.
The Clear button resets the input and screen, allowing you to start fresh.