Posted in Python onMay 30, 2020
本文实例为大家分享了PyQt5实现简单计算器的具体代码,供大家参考,具体内容如下
下面我们将介绍使用python的PyQt5图形界面来编写一个简易的计算器,实现“加,减,乘,除,平方,开方”等运算。
代码如下:
from PyQt5.QtGui import * from PyQt5.Qt import * from PyQt5.QtCore import * import sys,math,string class Calculator(QWidget): def __init__(self,parent=None): QWidget.__init__(self,parent=parent) self.initUI() self.last=[] def initUI(self): list=['&','**','s','C',7,8,9,'+',4,5,6,'-',1,2,3,'*',0,'.','=','/'] length=len(list) #创建动态按钮 for i in range (length): self.button=QPushButton(str(list[i]),self) #将按钮的clicked信号与onButtonClick函数相连 self.button.clicked.connect(self.onButtonClick) x=i%4 y=int(i/4) self.button.move(x*40+10,y*40+100) self.button.resize(30,30) #创建文本框 self.lineEdit=QLineEdit('',self) self.lineEdit.move(10,10) self.lineEdit.resize(150,70) self.setGeometry(200,200,170,300) self.setWindowTitle('计算器') 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 new=="**": self.lineEdit.setText('') result=string.atof(t)**2 self.lineEdit.setText(str(result)) app=QApplication(sys.argv) w=Calculator() w.show() sys.exit(app.exec_())
实现界面如下:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。
PyQt5实现简单的计算器
- Author -
伯纳乌的斯坦森声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@