How to code a calculator with Python
간단한 연산을 하는 파이썬 스크립트를 만들었습니다.
계산기를 시범 해 보실려면 깃 리포에서 압축 파일을 다운받아 exe 파일을 실행해 보세요!
Check out my repository here!
git repo
: https://github.com/jinlee487/python-simple-calculatorpython-simple-calculator
practicing coding with python
👋 Introduction
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
- Download the tkCalculator zip file.
- Unzip the file any location you would like.
- execute the tkCalculator.exe file in the dist folder.
References
Author: JWL
# import everything from tkinter module
from tkinter import *
Leave a comment