Skip to content

Instantly share code, notes, and snippets.

View thetnainghtun's full-sized avatar

Thet Naing Htun thetnainghtun

  • Yangon, Myanmar
View GitHub Profile
@thetnainghtun
thetnainghtun / Calculator
Last active October 16, 2020 01:36
Simple Calculator
from tkinter import*
def btnClick(numbers):
global operator
operator= operator+str(numbers)
text_input.set(operator)
def btnClear():
global operator
operator=''