This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = "" |