Beiträge
We all know you can make a Calculator in python but I wanted to build one with a graphical user interface (gui) that was friendly and can scale to your screen size. This is one of my first times using Tkinter its easy to use and gives you a frontend gui. If you want to use the code its in my repository . from tkinter import* import random import time; root = Tk() root.geometry(“300×500+0+0”) ...
Building Python Calculator in Tkinter
Aug 12, 2020
148 Aufrufe