import tkinter as tk
from xml.etree.ElementTree import Comment #tkinter ์ํฌํธํ๋๋ฐ tk๋ก ์ด๋ฆ๋ฐ๊พธ๊ธฐ
disValue = 0 #๊ฒฐ๊ณผ๊ฐ ๋ณ์๋ง๋ค๊ธฐ
operator = {'+':1, '-':2, '/':3, '*':4, 'C':5, '=':6}
stoValue = 0
opPre = 0
def number_click(value):
#print('์ซ์',value)
global disValue
disValue = (disValue*10) + value
str_value.set(disValue)
def clear():
global disValue, stoValue, opPre
stoValue = 0
opPre = 0
disValue = 0
str_value.set(disValue)
def operator_click(value):
#print('๋ช
๋ น',value)
global disValue, operator, stoValue, opPre
op = operator[value]
if op == 5: # C
clear()
elif disValue == 0:
opPre = 0
elif opPre == 0:
opPre = op
stoValue = disValue
disValue = 0
str_value.set(str(disValue))
elif op ==6: #'=
if opPre == 1:
disValue = stoValue + disValue
if opPre == 2:
disValue = stoValue - disValue
if opPre == 3:
disValue = stoValue / disValue
if opPre == 4:
disValue = stoValue * disValue
str_value.set(str(disValue))
disValue = 0
stoValue = 0
opPre = 0
else:
clear()
def button_click(value):
#print(value)
try:
value = int(value)
number_click(value)
except:
operator_click(value)
win = tk.Tk() #Tk ํจ์๋ง๋ค๊ธฐ
win.title('๊ณ์ฐ๊ธฐ') #ํ์ดํ๋ฃ๊ธฐ
str_value = tk.StringVar()
str_value.set(str(disValue)) # ๋ฌธ์๋ก ๋ณํํ์ฌ set
dis = tk.Entry(win, textvariable=str_value, justify='right', bg ='white', fg='red') #์๋ํธ์ฐฝ์ ๊ฐ ์๋์ผ๋ก ์
๋ฐ์ดํธ
dis.grid(column=0, row=0, columnspan=4, ipadx=80, ipady=30)
calItem = [['1','2','3','4'],
['5','6','7','8'],
['9','0','+','-'],
['/','*','C','=']]
for i,items in enumerate(calItem):
for k,item in enumerate(items):
try:
color = int(item)
color = 'black'
except:
color = 'pink'
bt = tk.Button(win,
text=item,
width=10,
height=5,
bg = color,
fg = 'white',
command = lambda cmd=item: button_click(cmd)
)
bt.grid(column=k, row=(i+1))
win.mainloop() #์์ฑํ ์๋์ฐ ๋ด๋ถ์์ ์ํ๋๋ ๋ง์ฐ์ค ํด๋ฆญ ๊ฐ์ ์ด๋ฒคํธ๋ค์ด ๋ฐ์ํ๊ฒ๋ ์ ์งํด์ฃผ๋ ํจ์
์ง๊ธ๊น์ง๋ ์น์ฌ์ดํธ๋ฅผ ๋ง๋๋ ๊ฒ๋ง ํด๋ดค๋๋ฐ ์ด๋ ๊ฒ GUI๋ก ๊ณ์ฐ๊ธฐ๋ฅผ ๋ง๋ ๊ฒ์ ์ฒ์์ด๋ค. ๊ทธ๋ ๋ค ๋ณด๋ ์ต์ํ์ง์์ ๊ธฐ๋ฅ์ ํ์ฉํ๊ฒ๋์ด ๋๋ฌด ๋ฏ์ค์๋ค.
์ฌ์ค ๊ณ์ฐ๊ธฐ๋ฅผ ๋ง๋ ๋ค๊ธฐ๋ณด๋ค๋ ๊ฐ์๋ฅผ ๋ณด๊ณ ๋ฐ๋ผํ ๋๋์ด๋ผ ์๋ฌด ๋์์์ด ํผ์ ๋ง๋ค๊ฒ ๋๋ฉด ๋ง๋งํ ๊ฒ๊ฐ์์ ๊ฑฑ์ ์ด๋ค.
ํ์ง๋ง ์ด๋ ๊ฒ ํ ๋ฐ ํ ๋ฐ ๋์๊ฐ๋ฉฐ ์ฐ์ตํ๋ค๋ณด๋ฉด ์ด์ ๋ณด๋ค ์ค๋ ๋ ๋์์ง์ ์์ ๊ฑฐ๋ผ ์๊ฐํ๋ค.