A simple and clean GUI Calculator built using Python and Tkinter.
This project demonstrates basic GUI development and event handling in Python.
- ➕ Addition
- ➖ Subtraction
- ✖ Multiplication
- ➗ Division
- 🧮 Live input display
- ✔ Keyboard-like buttons
- ✔ Right-aligned display
- ✔ Error handling (e.g., division by zero)
- Python 3
- Tkinter (Python's built-in GUI library)
- Install Python (if not already installed).
- Download the file:
calculator.py - Open terminal / command prompt in the folder containing the file.
- Run: (or) open visual studio and download the file and run it.
This project helps you understand:
- Tkinter frames, buttons, and layout (Grid/Pack)
- Lambda functions for button events
- Building user interfaces in Python
- Expression evaluation using
eval()