VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > Python基础教程 >
  • 用python 30行设计一个属于自己的计算器(2)

这个很好理解,就是判断输入是否合法,出现异常则输出不合法。

 

我们看下源程序。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from __future__import division
import sys
from mathimport *
from PyQt4.QtCoreimport *
from PyQt4.QtGuiimport *
  
  
class Form(QDialog):
  
    def __init__(self, parent=None):
        super(Form,self).__init__(parent)
        self.browser= QTextBrowser()
        self.lineedit= QLineEdit("Type an expression and press Enter")
        self.lineedit.selectAll()
        layout= QVBoxLayout()
        layout.addWidget(self.browser)
        layout.addWidget(self.lineedit)
        self.setLayout(layout)
        self.lineedit.setFocus()
        self.connect(self.lineedit, SIGNAL("returnPressed()"),
                     self.updateUi)
        self.setWindowTitle("Calculate coding by Kaysin")
  
    def updateUi(self):
        try:
            text= unicode(self.lineedit.text())
            self.browser.append("%s = <b>%s</b>" % (text,eval(text)))
        except:
            self.browser.append(
                    "<font color=red>%s is invalid!</font>" % text)
  
  
app= QApplication(sys.argv)
form= Form()
form.show()
app.exec_()

相关教程