import tkinter as tk
disValue = 0
operator = {'+': 1, '-': 2, '/': 3, '*': 4, 'C': 5, '=': 6}
stoValue = 0
opPre = 0
# 숫자 클릭
def number_click(value):
global disValue
disValue = (disValue * 10) + value # 숫자 클릭 시 10의 자리씩 이동
str_value.set(disValue) # 화면에 숫자 표시
# C 클릭
def clear():
global disValue, stoValue, opPre
# 주요 변수 초기화
stoValue = 0
opPre = 0
disValue = 0
str_value.set(str(disValue)) # 화면 초기화
# 연산자 클릭
def oprator_click(value):
# print('명령 ', value)
global disValue, operator, stoValue, opPre
# 연산자를 정수로 변경 (+ : 1, - : 2, / : 3, * : 4)
op = operator[value]
if op == 5: # C (clear)
clear()
elif disValue == 0: # 현재 화면에 출력된 값이 0일 때
opPre = 0
elif opPre == 0: # 연산자가 한번도 클릭되지 않았을 때
opPre = op # 현재 눌린 연산자가 있으면 저장
stoValue = disValue # 현재까지의 숫자를 저장
disValue = 0 # 연산자 이후의 숫자를 받기 위해 초기화
str_value.set(str(disValue)) # 0으로 다음 숫자를 받을 준비
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) # 정수로 변환
# 정수가 아닌 경우 except가 발생하여 아래 except로 이동
number_click(value) # 정수인 경우 실행
except:
oprator_click(value) # 정수가 아닌 연산자인 경우 실행
win = tk.Tk()
win.title('계산시')
str_value = tk.StringVar()
str_value.set(str(disValue))
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 = 'green'
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()
'Python' 카테고리의 다른 글
[파이썬] Flask - 서버에서 HTML로의 데이터 전달 (2) | 2022.04.20 |
---|---|
[파이썬] Flask - GET 방식에서 Ajax 파라미터 사용하는법 (0) | 2022.04.20 |
[파이썬] 예외처리 - try, except (0) | 2022.04.18 |
[파이썬] f-string (0) | 2022.04.18 |
[파이썬] 웹 크롤링 관련 패키지 설명 (0) | 2022.04.15 |