這篇文章主要講解了Python tkinter實現(xiàn)簡單加法計算器的方法,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
成都創(chuàng)新互聯(lián)公司網(wǎng)站建設公司,提供成都網(wǎng)站制作、做網(wǎng)站,網(wǎng)頁設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;可快速的進行網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,是專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!tkinter 是 Python 的標準 GUI 庫。Python 使用 tkinter 可以快速的創(chuàng)建 GUI 應用程序。由于 tkinter 是內置到 python 的安裝包中、只要安裝好 Python 之后就能 import tkinter 庫、而且 IDLE 也是用 tkinter 編寫而成、對于簡單的圖形界面 tkinter 還是能應付自如。
代碼如下
from tkinter import * def Calculate(): a1 = int(text1.get('1.0', END)) # 從行首取到行尾 a2 = int(text2.get('1.0', END)) a3 = a1 + a2 text3.delete('1.0', END) text3.insert(INSERT, a3) root = Tk() root.title('myTitle') label1 = Label(root, text = 'First Number:') label1.grid(row = 0, column = 0) text1 = Text(root, width = 30, height = 1) text1.grid(row= 1, column = 0) label2 = Label(root, text = 'Second Number:') label2.grid(row = 2, column = 0) text2 = Text(root, width = 30, height = 1) text2.grid(row = 3, column = 0) label3 = Label(root, text = 'Result:') label3.grid(row = 4, column = 0) text3 = Text(root, width = 30, height = 1) text3.grid(row = 5, column = 0) button1 = Button(root, text = 'Calculate', command = Calculate) button1.grid(row = 6, column = 0) mainloop()