91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用python?tkinter實現簡單計算器功能

發布時間:2022-02-07 15:40:37 來源:億速云 閱讀:177 作者:iii 欄目:開發技術

這篇文章主要講解了“怎么用python tkinter實現簡單計算器功能”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用python tkinter實現簡單計算器功能”吧!

效果圖

怎么用python?tkinter實現簡單計算器功能

直接上代碼

import tkinter as tk

input_num_ls = []
first_num = None
calculator_method = None


def get_num(ls):

    new_ls = [10 ** i * float(num) for i, num in enumerate(ls)]

    ls_sum = sum(new_ls)

    if int(ls_sum) == ls_sum:
        return int(ls_sum)
    
    else:
        return ls_sum


def append_num(num):
    global input_num_ls
    if len(num) < 10:
        input_num_ls.append(num)
    else:
        input_num_ls.append(num[:10])

    current_value.set(get_num(input_num_ls))

    print(input_num_ls)


def append_calculator(method):
    global input_num_ls, first_num, calculator_method
    calculator_method = method
    first_num = get_num(input_num_ls)
    input_num_ls = []
    print('method', calculator_method)


def calculator_result():
    global first_num, input_num_ls, calculator_method

    second_num = get_num(input_num_ls)

    input_num_ls.clear()

    if calculator_method == '+':
        current_value.set(second_num + first_num)
        input_num_ls.append(str(second_num + first_num))

    elif calculator_method == '-':
        current_value.set(first_num - second_num)
        input_num_ls.append(str(first_num - second_num))

    elif calculator_method == '*':
        current_value.set(first_num * second_num)
        input_num_ls.append(str(second_num * first_num))

    elif calculator_method == '/':
        current_value.set(first_num / second_num)
        input_num_ls.append(str(first_num / second_num))

    print(first_num, second_num, calculator_method)


def clear():
    global first_num, input_num_ls, calculator_method
    first_num = None
    input_num_ls = []
    calculator_method = None
    current_value.set(0)


def func():
    pass


# 主體窗口
window = tk.Tk()

# 設置窗口 標題
window.title('簡易計算器')

# 設置窗口 寬高
window.geometry('400x300')

# 添加user顯示屏幕背景
screen_area = tk.Frame(width='400', height='100', bg='#ddd')
# 放置到window中
screen_area.pack()

# 示例設置顯示的數據類
current_value = tk.StringVar()
current_value.set(0)

# 數字顯示框
# anchor  文本相對于標簽中心的位置   默認是center N S W E
show_screen_label = tk.Label(screen_area, textvariable=current_value, bg='white', width='400', height='2', font={'黑體', 40, 'bold'}, anchor='e')
show_screen_label.pack(padx=10, pady=6)

# 按鍵區域
button_area = tk.Frame(width='300', height='300', bg='#ccc')
button_area.pack(padx=10, pady=5)

# 添加button
tk.Button(button_area, text='C', width='5', height='1', command=lambda: clear()).grid(row='1', column='0')
tk.Button(button_area, text='+', width='5', height='1', command=lambda: append_calculator('+')).grid(row='1', column='1')
tk.Button(button_area, text='-', width='5', height='1', command=lambda: append_calculator('-')).grid(row='1', column='2')
tk.Button(button_area, text='*', width='5', height='1', command=lambda: append_calculator('*')).grid(row='1', column='3')
tk.Button(button_area, text='7', width='5', height='1', command=lambda: append_num('7')).grid(row='2', column='0')
tk.Button(button_area, text='8', width='5', height='1', command=lambda: append_num('8')).grid(row='2', column='1')
tk.Button(button_area, text='9', width='5', height='1', command=lambda: append_num('9')).grid(row='2', column='2')
tk.Button(button_area, text='/', width='5', height='1', command=lambda: append_calculator('/')).grid(row='2', column='3')
tk.Button(button_area, text='4', width='5', height='1', command=lambda: append_num('4')).grid(row='3', column='0')
tk.Button(button_area, text='5', width='5', height='1', command=lambda: append_num('5')).grid(row='3', column='1')
tk.Button(button_area, text='6', width='5', height='1', command=lambda: append_num('6')).grid(row='3', column='2')
tk.Button(button_area, text='=', width='5', height='1', command=lambda: calculator_result()).grid(row='3', column='3')
tk.Button(button_area, text='1', width='5', height='1', command=lambda: append_num('1')).grid(row='4', column='0')
tk.Button(button_area, text='2', width='5', height='1', command=lambda: append_num('2')).grid(row='4', column='1')
tk.Button(button_area, text='3', width='5', height='1', command=lambda: append_num('3')).grid(row='4', column='2')
tk.Button(button_area, text='C', width='5', height='1', command=lambda: clear()).grid(row='4', column='3')

window.mainloop()

感謝各位的閱讀,以上就是“怎么用python tkinter實現簡單計算器功能”的內容了,經過本文的學習后,相信大家對怎么用python tkinter實現簡單計算器功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

于田县| 海安县| 甘谷县| 新民市| 安岳县| 甘孜| 莎车县| 天全县| 南昌县| 襄汾县| 娄底市| 泗水县| 石屏县| 静乐县| 临泉县| 临澧县| 汽车| 盐城市| 东兴市| 云南省| 鹤庆县| 临漳县| 绥化市| 莱西市| 定南县| 资兴市| 滨州市| 新密市| 葫芦岛市| 鄂托克前旗| 祁门县| 永济市| 聂荣县| 吉林市| 宜宾市| 苍南县| 彭阳县| 菏泽市| 临洮县| 中阳县| 金乡县|