Skip to content

Instantly share code, notes, and snippets.

@IHEfty
IHEfty / Calc.py
Last active October 25, 2024 06:04
Simple Python calculator program.
import tkinter as tk
class Calculator:
def __init__(self, root):
self.root = root
self.root.title("Calculator By IH Efty")
self.root.geometry("390x600")
self.root.resizable(0, 0)
self.expression = ""