๐Ÿ“š ๋‚ด์ผ๋ฐฐ์›€์บ ํ”„ 0์ฃผ์ฐจ ๊ณผ์ œ #๊ณ„์‚ฐ๊ธฐ๋งŒ๋“ค๊ธฐ

๋ฌธ๋ช…์ฃผยท2022๋…„ 4์›” 11์ผ
0
  • test.py์ฝ”๋“œ
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๋กœ ๊ณ„์‚ฐ๊ธฐ๋ฅผ ๋งŒ๋“  ๊ฒƒ์€ ์ฒ˜์Œ์ด๋‹ค. ๊ทธ๋ ‡๋‹ค ๋ณด๋‹ˆ ์ต์ˆ™ํ•˜์ง€์•Š์€ ๊ธฐ๋Šฅ์„ ํ™œ์šฉํ•˜๊ฒŒ๋˜์–ด ๋„ˆ๋ฌด ๋‚ฏ์„ค์—ˆ๋‹ค.
    ์‚ฌ์‹ค ๊ณ„์‚ฐ๊ธฐ๋ฅผ ๋งŒ๋“ ๋‹ค๊ธฐ๋ณด๋‹ค๋Š” ๊ฐ•์˜๋ฅผ ๋ณด๊ณ  ๋”ฐ๋ผํ•œ ๋Š๋‚Œ์ด๋ผ ์•„๋ฌด ๋„์›€์—†์ด ํ˜ผ์ž ๋งŒ๋“ค๊ฒŒ ๋˜๋ฉด ๋ง‰๋ง‰ํ• ๊ฒƒ๊ฐ™์•„์„œ ๊ฑฑ์ •์ด๋‹ค.
    ํ•˜์ง€๋งŒ ์ด๋ ‡๊ฒŒ ํ•œ ๋ฐœ ํ•œ ๋ฐœ ๋‚˜์•„๊ฐ€๋ฉฐ ์—ฐ์Šตํ•˜๋‹ค๋ณด๋ฉด ์–ด์ œ๋ณด๋‹ค ์˜ค๋Š˜ ๋” ๋‚˜์•„์งˆ์ˆ˜ ์žˆ์„ ๊ฑฐ๋ผ ์ƒ๊ฐํ•œ๋‹ค.

profile
ํ•˜๋ฃจ ํ•œ๊ฑธ์Œ์”ฉ ๊พธ์ค€ํžˆ ๋‚˜์•„๊ฐ€๋Š” ๊ฐœ๋ฐœ์ž๐Ÿ™†โ€โ™€๏ธ https://github.com/Moonmooj

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด