使用Python开发实用计算器
发布时间:2020-12-17 17:28:22 所属栏目:Python 来源:网络整理
导读:今天PHP站长网 52php.cn把收集自互联网的代码分享给大家,仅供参考。 #!/usr/bin/env python# -*- coding: utf-8 -*-'''Author : Mr.LiuYCCreated on 2014-09-30E-Mail : [email?protected]Introduction: 简易计算器 实现
以下代码由PHP站长网 52php.cn收集自互联网 现在PHP站长网小编把它分享给大家,仅供参考 #!/usr/bin/env python # -*- coding: utf-8 -*- ''' Author : Mr.LiuYC Created on 2014-09-30 E-Mail : [email?protected] Introduction: 简易计算器 实现图形界面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,'*','.','=','/'] 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_()) 以上内容由PHP站长网【52php.cn】收集整理供大家参考研究 如果以上内容对您有帮助,欢迎收藏、点赞、推荐、分享。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |