Python開發(fā)的實(shí)用計(jì)算器完整實(shí)例
本文實(shí)例講述了Python開發(fā)的實(shí)用計(jì)算器。分享給大家供大家參考,具體如下:
實(shí)現(xiàn)功能:圖形界面PyQt,輸入框,+,—,*,/ ;乘方 ,開方 ,取余,清零。
1. Python代碼:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Author : Mr.LiuYC
Created on 2014-09-30
E-Mail : liuyanchen0725@gmail.com
Introduction: 簡易計(jì)算器 實(shí)現(xiàn)圖形界面PyQt,輸入框,+,—,*,/ ;乘方 ,開方 ,取余,清零。
'''
from PyQt4 import QtGui,QtCore
import sys , math , string
class Example(QtGui.QWidget):
def __init__(self,parent=None):
QtGui.QWidget.__init__(self,parent=parent)
self.initUI()
self.last = []
def initUI(self):
list = ['%','**','sqrt','C',7,8,9,'+',4,5,6,'-',1,2,3,'*',0,'.','=','/']
length = len(list)
for i in xrange(length):
self.button = QtGui.QPushButton(str(list[i]),self)
self.button.clicked.connect(self.onButtonClick)
x = i % 4
y = i / 4
self.button.move(x * 40 + 10,y * 40 + 90)
self.button.resize(30,30)
self.lineEdit = QtGui.QLineEdit('',self)
self.lineEdit.move(10,10)
self.lineEdit.resize(150,70)
self.setGeometry(200, 200, 170, 300)
self.setWindowTitle('Quit buttom')
self.show()
def onButtonClick(self):
t = self.lineEdit.text()
new = self.sender().text()
self.last.append(new)
print self.last
self.lineEdit.setText(t+new)
if new == '=':
result = eval(str(t))
self.lineEdit.setText(str(result))
if new == 'C':
self.lineEdit.setText('')
if new == 'sqrt':
self.lineEdit.setText('')
result = math.sqrt(string.atof(t))
self.lineEdit.setText(str(result))
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
e = Example()
sys.exit(app.exec_())
2. calculator.py
#!/usr/bin/env python
# -*- coding: utf-8 -*-
'''
Author : Mr.LiuYC
Created on 2014-09-30
E-Mail : liuyanchen0725@gmail.com
Introduction: 簡易計(jì)算器 實(shí)現(xiàn)圖形界面PyQt,輸入框,+,—,*,/ ;乘方 ,開方 ,取余,清零。
'''
from PyQt4 import QtGui,QtCore
import sys , math , string
class Example(QtGui.QWidget):
def __init__(self,parent=None):
QtGui.QWidget.__init__(self,parent=parent)
self.initUI()
self.last = []
def initUI(self):
list = ['%','**','sqrt','C',7,8,9,'+',4,5,6,'-',1,2,3,'*',0,'.','=','/']
length = len(list)
for i in xrange(length):
self.button = QtGui.QPushButton(str(list[i]),self)
self.button.clicked.connect(self.onButtonClick)
x = i % 4
y = i / 4
self.button.move(x * 40 + 10,y * 40 + 90)
self.button.resize(30,30)
self.lineEdit = QtGui.QLineEdit('',self)
self.lineEdit.move(10,10)
self.lineEdit.resize(150,70)
self.setGeometry(200, 200, 170, 300)
self.setWindowTitle('Quit buttom')
self.show()
def onButtonClick(self):
t = self.lineEdit.text()
new = self.sender().text()
self.last.append(new)
print self.last
self.lineEdit.setText(t+new)
if new == '=':
result = eval(str(t))
self.lineEdit.setText(str(result))
if new == 'C':
self.lineEdit.setText('')
if new == 'sqrt':
self.lineEdit.setText('')
result = math.sqrt(string.atof(t))
self.lineEdit.setText(str(result))
if __name__ == '__main__':
app = QtGui.QApplication(sys.argv)
e = Example()
sys.exit(app.exec_())
3. 運(yùn)行效果圖如下:



PS:這里再為大家推薦幾款計(jì)算工具供大家進(jìn)一步參考借鑒:
在線一元函數(shù)(方程)求解計(jì)算工具:
http://tools.jb51.net/jisuanqi/equ_jisuanqi
科學(xué)計(jì)算器在線使用_高級計(jì)算器在線計(jì)算:
http://tools.jb51.net/jisuanqi/jsqkexue
在線計(jì)算器_標(biāo)準(zhǔn)計(jì)算器:
http://tools.jb51.net/jisuanqi/jsq
更多關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python函數(shù)使用技巧總結(jié)》、《Python字符串操作技巧匯總》、《Python入門與進(jìn)階經(jīng)典教程》及《Python文件與目錄操作技巧匯總》
希望本文所述對大家Python程序設(shè)計(jì)有所幫助。
- python 簡易計(jì)算器程序,代碼就幾行
- Python實(shí)現(xiàn)簡單的四則運(yùn)算計(jì)算器
- 基于python的Tkinter實(shí)現(xiàn)一個(gè)簡易計(jì)算器
- python實(shí)現(xiàn)簡易版計(jì)算器
- 僅用50行代碼實(shí)現(xiàn)一個(gè)Python編寫的計(jì)算器的教程
- Python只用40行代碼編寫的計(jì)算器實(shí)例
- Python設(shè)計(jì)實(shí)現(xiàn)的計(jì)算器功能完整實(shí)例
- Python+tkinter使用80行代碼實(shí)現(xiàn)一個(gè)計(jì)算器實(shí)例
- 用python實(shí)現(xiàn)一個(gè)簡單計(jì)算器(完整DEMO)
相關(guān)文章
python 列出面板數(shù)據(jù)所有變量名的示例代碼
在Python中,處理面板數(shù)據(jù)(Panel Data)通常使用pandas庫,特別是當(dāng)數(shù)據(jù)以DataFrame或Panel,這篇文章主要介紹了python 列出面板數(shù)據(jù)所有變量名,需要的朋友可以參考下2024-06-06
PyTorch深度學(xué)習(xí)模型的保存和加載流程詳解
PyTorch是一個(gè)開源的Python機(jī)器學(xué)習(xí)庫,基于Torch,用于自然語言處理等應(yīng)用程序。2017年1月,由Facebook人工智能研究院(FAIR)基于Torch推出了PyTorch,這篇文章主要介紹了PyTorch模型的保存和加載流程2021-10-10
Python?tkinter中l(wèi)abel控件動(dòng)態(tài)改變值問題
這篇文章主要介紹了Python?tkinter中l(wèi)abel控件動(dòng)態(tài)改變值問題,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-01-01
Python 旋轉(zhuǎn)立方體的實(shí)現(xiàn)示例
本文主要介紹了Python 旋轉(zhuǎn)立方體的實(shí)現(xiàn)示例,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2024-05-05
python如何獲取tensor()數(shù)據(jù)類型中的值
這篇文章主要介紹了python如何獲取tensor()數(shù)據(jù)類型中的值,具有很好的參考價(jià)值,希望對大家有所幫助。如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2022-07-07
Python實(shí)現(xiàn)計(jì)算文件夾下.h和.cpp文件的總行數(shù)
這篇文章主要介紹了Python實(shí)現(xiàn)計(jì)算文件夾下.h和.cpp文件的總行數(shù),本文直接給出實(shí)現(xiàn)代碼,需要的朋友可以參考下2015-04-04
Python運(yùn)行的17個(gè)時(shí)新手常見錯(cuò)誤小結(jié)
當(dāng)初學(xué) Python 時(shí),想要弄懂 Python 的錯(cuò)誤信息的含義可能有點(diǎn)復(fù)雜。這里列出了常見的的一些讓你程序 crash 的運(yùn)行時(shí)錯(cuò)誤2012-08-08
解決vscode python print 輸出窗口中文亂碼的問題
今天小編就為大家分享一篇解決vscode python print 輸出窗口中文亂碼的問題,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-12-12

