How to code a calculator with Python

less than 1 minute read

간단한 연산을 하는 파이썬 스크립트를 만들었습니다.

계산기를 시범 해 보실려면 깃 리포에서 압축 파일을 다운받아 exe 파일을 실행해 보세요!

Check out my repository here!

Hello World!

I am practicing how to code a GUI software with python. Here is a calculator I made.

This calculator is version 2.00.

📑 How to Install and Run

  1. Download the tkCalculator zip file.
  2. Unzip the file any location you would like.
  3. execute the tkCalculator.exe file in the dist folder.

    References

Author: JWL

# import everything from tkinter module
from tkinter import *

Leave a comment