首頁 > 軟體

python實現簡單的計算器功能

2022-07-21 18:01:57

本文範例為大家分享了python實現簡單計算器的具體程式碼,供大家參考,具體內容如下

今天學習到python中介面設計部分,常用的幾種圖形化介面庫有:Jython、wxPython和tkinter。

主要介紹tkinter模組,tkinter模組(tk介面)是Python的標準tk GUI工具包的介面。tk和tkinter可以在大多數的UNIX平臺下使用,同樣可以應用在Windows和Macintosh系統裡。Tk8.0的後續版本可以實現本地視窗風格,並良好地執行在絕大多數平臺中。

下面使用tkinter設計完成計算器功能。

(1)首先呈現一下計算器初始介面:

(2)簡單說明:已經實現計算器的基本功能

(3)主要程式碼說明:

①匯入包

import tkinter
from tkinter import *
import re
import tkinter.messagebox

 ②介面佈局設定

# 建立主視窗
root = Tk()
# 設定視窗大小和位置
root.title("---計算器---")
root.geometry("320x210+500+200")
# 自動重新整理字串變數,可用 set 和 get 方法進行傳值和取值
contentVar = tkinter.StringVar(root,'')
# 建立單行文字方塊
contentEntry = tkinter.Entry(root, textvariable=contentVar)
# 設定文字方塊座標及寬高
contentEntry.place(x=20, y=10, width=260, height=30)
 
# 按鈕顯示內容
bvalue = ['CLC', '+', '-', '//', '0', '1', '2', '√', '3', '4', '5', '*', '6', '7', '8', '.', '9', '/', '**', '=']
index = 0
# 將按鈕進行 5x4 放置
for row in range(5):
    for col in range(4):
        d = bvalue[index]
        index += 1
        btnDigit = tkinter.Button(root, text=d, command=lambda x=d:onclick(x))
        btnDigit.place(x=20 + col * 70, y=50 + row * 30, width=50, height=20)
root.mainloop()

③按鈕事件的響應函數(可在評論區進行交流)

# 點選事件
def onclick(btn):
    # 運運算元
    operation = ('+', '-', '*', '/', '**', '//')
    # 獲取文字方塊中的內容
    content = contentVar.get()
    # 如果已有內容是以小數點開頭的,在前面加 0
    if content.startswith('.'):
        content = '0' + content  # 字串可以直接用+來增加字元
    # 根據不同的按鈕作出不同的反應
    if btn in '0123456789':
        # 按下 0-9 在 content 中追加
        content += btn
    elif btn == '.':
        # 將 content 從 +-*/ 這些字元的地方分割開來
        lastPart = re.split(r'+|-|*|/', content)[-1]
        if '.' in lastPart:
            # 資訊提示對話方塊
            tkinter.messagebox.showerror('錯誤', '重複出現的小數點')
            return
        else:
            content += btn
    elif btn == 'CLC':
        # 清除文字方塊
        content = ''
    elif btn == '=':
        try:
            # 對輸入的表示式求值
            content = str(eval(content))
        except:
            tkinter.messagebox.showerror('錯誤', '表示式有誤')
            return
    elif btn in operation:
        if content.endswith(operation):
            tkinter.messagebox.showerror('錯誤', '不允許存在連續運運算元')
            return
        content += btn
    elif btn == '√':
        # 從 . 處分割存入 n,n 是一個列表
        n = content.split('.')
        # 如果列表中所有的都是數位,就是為了檢查表示式是不是正確的
        if all(map(lambda x: x.isdigit(), n)):
            content = eval(content) ** 0.5
        else:
            tkinter.messagebox.showerror('錯誤', '表示式錯誤')
            return

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com