Python使用wxPython实现计算器


Posted in Python onJanuary 30, 2018

本文实例为大家分享了wxPython实现计算器的具体代码,供大家参考,具体内容如下

# -*- coding: utf-8 -*-

##########################################
## Python code generated with wxFormBuilder (version Feb 16 2016)
## http://www.wxformbuilder.org/
##
## PLEASE DO "NOT" EDIT THIS FILE!
##########################################

import wx
import wx.xrc
import math


#############################################
## Class MyFrame1
#############################################

class MyFrame1(wx.Frame):
 def __init__(self, parent):
 wx.Frame.__init__(self, parent, id=wx.ID_ANY, title=wx.EmptyString, pos=wx.DefaultPosition,
  size=wx.Size(486, 448), style=wx.DEFAULT_FRAME_STYLE | wx.TAB_TRAVERSAL)

 self.SetSizeHintsSz(wx.DefaultSize, wx.DefaultSize)

 bSizer1 = wx.BoxSizer(wx.VERTICAL)

 self.m_textCtrl1 = wx.TextCtrl(self, wx.ID_ANY, wx.EmptyString, wx.DefaultPosition, wx.Size(600, 60), style=wx.TE_RIGHT)
 self.m_textCtrl1.SetMinSize(wx.Size(470, 60))

 bSizer1.Add(self.m_textCtrl1, 0, wx.ALL, 5)

 bSizer2 = wx.BoxSizer(wx.HORIZONTAL)

 self.m_button1 = wx.Button(self, wx.ID_ANY, u"退格", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer2.Add(self.m_button1, 0, wx.ALL, 5)

 self.m_button2 = wx.Button(self, wx.ID_ANY, u"清屏", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer2.Add(self.m_button2, 0, wx.ALL, 5)

 self.m_button3 = wx.Button(self, wx.ID_ANY, u"sqrt", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer2.Add(self.m_button3, 0, wx.ALL, 5)

 self.m_button4 = wx.Button(self, wx.ID_ANY, u"/", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer2.Add(self.m_button4, 0, wx.ALL, 5)

 bSizer1.Add(bSizer2, 0, wx.EXPAND, 5)

 bSizer6 = wx.BoxSizer(wx.HORIZONTAL)

 self.m_button10 = wx.Button(self, wx.ID_ANY, u"7", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer6.Add(self.m_button10, 0, wx.ALL, 5)

 self.m_button11 = wx.Button(self, wx.ID_ANY, u"8", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer6.Add(self.m_button11, 0, wx.ALL, 5)

 self.m_button12 = wx.Button(self, wx.ID_ANY, u"9", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer6.Add(self.m_button12, 0, wx.ALL, 5)

 self.m_button13 = wx.Button(self, wx.ID_ANY, u"*", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer6.Add(self.m_button13, 0, wx.ALL, 5)

 bSizer1.Add(bSizer6, 0, wx.EXPAND, 5)

 bSizer7 = wx.BoxSizer(wx.HORIZONTAL)

 self.m_button15 = wx.Button(self, wx.ID_ANY, u"4", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer7.Add(self.m_button15, 0, wx.ALL, 5)

 self.m_button16 = wx.Button(self, wx.ID_ANY, u"5", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer7.Add(self.m_button16, 0, wx.ALL, 5)

 self.m_button17 = wx.Button(self, wx.ID_ANY, u"6", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer7.Add(self.m_button17, 0, wx.ALL, 5)

 self.m_button18 = wx.Button(self, wx.ID_ANY, u"-", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer7.Add(self.m_button18, 0, wx.ALL, 5)

 bSizer1.Add(bSizer7, 0, wx.EXPAND, 5)

 bSizer34 = wx.BoxSizer(wx.HORIZONTAL)

 self.m_button140 = wx.Button(self, wx.ID_ANY, u"1", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer34.Add(self.m_button140, 0, wx.ALL, 5)

 self.m_button141 = wx.Button(self, wx.ID_ANY, u"2", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer34.Add(self.m_button141, 0, wx.ALL, 5)

 self.m_button142 = wx.Button(self, wx.ID_ANY, u"3", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer34.Add(self.m_button142, 0, wx.ALL, 5)

 self.m_button143 = wx.Button(self, wx.ID_ANY, u"+", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer34.Add(self.m_button143, 0, wx.ALL, 5)

 bSizer1.Add(bSizer34, 0, wx.EXPAND, 5)

 bSizer35 = wx.BoxSizer(wx.HORIZONTAL)

 self.m_button145 = wx.Button(self, wx.ID_ANY, u"0", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer35.Add(self.m_button145, 0, wx.ALL, 5)

 self.m_button148 = wx.Button(self, wx.ID_ANY, u".", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer35.Add(self.m_button148, 0, wx.ALL, 5)

 self.m_button149 = wx.Button(self, wx.ID_ANY, u"+/-", wx.DefaultPosition, wx.Size(110, 60), 0)
 bSizer35.Add(self.m_button149, 0, wx.ALL, 5)

 self.m_button150 = wx.Button(self, wx.ID_ANY, u"=", wx.DefaultPosition, wx.Size(110, 600), 0)
 self.m_button150.SetMinSize(wx.Size(110, 60))

 bSizer35.Add(self.m_button150, 0, wx.ALL, 5)

 bSizer1.Add(bSizer35, 0, wx.EXPAND, 5)

 self.SetSizer(bSizer1)
 self.Layout()

 self.Centre(wx.BOTH)

 # Connect Events
 self.m_button1.Bind(wx.EVT_BUTTON, self.m_button1OnButtonClick)
 self.m_button2.Bind(wx.EVT_BUTTON, self.m_button2OnButtonClick)
 self.m_button3.Bind(wx.EVT_BUTTON, self.m_button3OnButtonClick)
 self.m_button4.Bind(wx.EVT_BUTTON, self.m_button4OnButtonClick)
 self.m_button10.Bind(wx.EVT_BUTTON, self.m_button10OnButtonClick)
 self.m_button11.Bind(wx.EVT_BUTTON, self.m_button11OnButtonClick)
 self.m_button12.Bind(wx.EVT_BUTTON, self.m_button12OnButtonClick)
 self.m_button13.Bind(wx.EVT_BUTTON, self.m_button13OnButtonClick)
 self.m_button15.Bind(wx.EVT_BUTTON, self.m_button15OnButtonClick)
 self.m_button16.Bind(wx.EVT_BUTTON, self.m_button16OnButtonClick)
 self.m_button17.Bind(wx.EVT_BUTTON, self.m_button17OnButtonClick)
 self.m_button18.Bind(wx.EVT_BUTTON, self.m_button18OnButtonClick)
 self.m_button140.Bind(wx.EVT_BUTTON, self.m_button140OnButtonClick)
 self.m_button141.Bind(wx.EVT_BUTTON, self.m_button141OnButtonClick)
 self.m_button142.Bind(wx.EVT_BUTTON, self.m_button142OnButtonClick)
 self.m_button143.Bind(wx.EVT_BUTTON, self.m_button143OnButtonClick)
 self.m_button145.Bind(wx.EVT_BUTTON, self.m_button145OnButtonClick)
 self.m_button148.Bind(wx.EVT_BUTTON, self.m_button148OnButtonClick)
 self.m_button149.Bind(wx.EVT_BUTTON, self.m_button149OnButtonClick)
 self.m_button150.Bind(wx.EVT_BUTTON, self.m_button150OnButtonClick)

 def __del__(self):
 pass

 # Virtual event handlers, overide them in your derived class
 def m_button1OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result[:-1]
 self.m_textCtrl1.SetValue(result)

 def m_button2OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=''
 self.m_textCtrl1.SetValue(result)

 def m_button3OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=int(result)
 result=math.sqrt(result)
 self.m_textCtrl1.SetValue(str(result))

 def m_button4OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'/'
 self.m_textCtrl1.SetValue(result)

 def m_button10OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'7'
 self.m_textCtrl1.SetValue(result)

 def m_button11OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'8'
 self.m_textCtrl1.SetValue(result)

 def m_button12OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'9'
 self.m_textCtrl1.SetValue(result)

 def m_button13OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'*'
 self.m_textCtrl1.SetValue(result)

 def m_button15OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'4'
 self.m_textCtrl1.SetValue(result)

 def m_button16OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'5'
 self.m_textCtrl1.SetValue(result)

 def m_button17OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'6'
 self.m_textCtrl1.SetValue(result)

 def m_button18OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'-'
 self.m_textCtrl1.SetValue(result)

 def m_button140OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'1'
 self.m_textCtrl1.SetValue(result)

 def m_button141OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'2'
 self.m_textCtrl1.SetValue(result)

 def m_button142OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'3'
 self.m_textCtrl1.SetValue(result)

 def m_button143OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'+'
 self.m_textCtrl1.SetValue(result)

 def m_button145OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'0'
 self.m_textCtrl1.SetValue(result)

 def m_button148OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=result+'.'
 self.m_textCtrl1.SetValue(result)

 def m_button149OnButtonClick(self, event):
 result=self.m_textCtrl1.GetValue()
 result=-int(result)
 self.m_textCtrl1.SetValue(str(result))

 def m_button150OnButtonClick(self, event):
 self.m_textCtrl1.SetValue(str(eval(self.m_textCtrl1.GetValue())))

app=wx.App()
window=MyFrame1(None)
window.Show(True)
app.MainLoop()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python django 增删改查操作 数据库Mysql
Jul 27 Python
Python进程间通信之共享内存详解
Oct 30 Python
TensorFlow在MAC环境下的安装及环境搭建
Nov 14 Python
完美解决Pycharm无法导入包的问题 Unresolved reference
May 18 Python
python中字符串的操作方法大全
Jun 03 Python
python中实现字符串翻转的方法
Jul 11 Python
使用PyQt4 设置TextEdit背景的方法
Jun 14 Python
Python+PyQT5的子线程更新UI界面的实例
Jun 14 Python
python实现字符串完美拆分split()的方法
Jul 16 Python
详解Python 中sys.stdin.readline()的用法
Sep 12 Python
在Python中实现函数重载的示例代码
Dec 12 Python
vue学习笔记之动态组件和v-once指令简单示例
Feb 29 Python
python链接oracle数据库以及数据库的增删改查实例
Jan 30 #Python
python实现简易版计算器
Jun 22 #Python
python列表的增删改查实例代码
Jan 30 #Python
Python+tkinter使用40行代码实现计算器功能
Jan 30 #Python
Python Tkinter实现简易计算器功能
Jan 30 #Python
python使用tkinter实现简单计算器
Jan 30 #Python
Python实现简单遗传算法(SGA)
Jan 29 #Python
You might like
用ADODB来让PHP操作ACCESS数据库的方法
2006/12/31 PHP
php用数组返回无限分类的列表数据的代码
2010/08/08 PHP
php生成zip压缩文件的方法详解
2013/06/09 PHP
Mysql的Root密码忘记,查看或修改的解决方法(图文介绍)
2013/06/14 PHP
使用HMAC-SHA1签名方法详解
2013/06/26 PHP
php与java通过socket通信的实现代码
2013/10/21 PHP
php调用google接口生成二维码示例
2014/04/28 PHP
PHP面向对象程序设计之接口用法
2014/08/20 PHP
php面向对象程序设计中self与static的区别分析
2019/05/21 PHP
PHP面向对象程序设计内置标准类,普通数据类型转为对象类型示例
2019/06/12 PHP
JavaScript 组件之旅(一)分析和设计
2009/10/28 Javascript
javascript 特性检测并非浏览器检测
2010/01/15 Javascript
jQuery 处理网页内容的实现代码
2010/02/15 Javascript
几个比较经典常用的jQuery小技巧
2010/03/01 Javascript
JQuery判断子iframe何时加载完成解决方案
2013/08/20 Javascript
jquery动态添加option示例
2013/12/30 Javascript
jquery获取元素索引值index()示例
2014/02/13 Javascript
JavaScript模块规范之AMD规范和CMD规范
2015/10/27 Javascript
基于Jquery+div+css实现弹出登录窗口(代码超简单)
2015/10/27 Javascript
js生成随机数的过程解析
2015/11/24 Javascript
jQuery语法小结(超实用)
2015/12/31 Javascript
jQuery使用contains过滤器实现精确匹配方法详解
2016/02/25 Javascript
基于bootstrap实现广告轮播带图片和文字效果
2016/07/22 Javascript
原生JS封装animate运动框架的实例
2017/10/12 Javascript
关于Vue背景图打包之后访问路径错误问题的解决
2017/11/03 Javascript
解析vue中的$mount
2017/12/21 Javascript
Vue.js使用axios动态获取response里的data数据操作
2020/09/08 Javascript
tensorflow TFRecords文件的生成和读取的方法
2018/02/06 Python
Python中property属性实例解析
2018/02/10 Python
Python弹出输入框并获取输入值的实例
2019/06/18 Python
Anaconda3+tensorflow2.0.0+PyCharm安装与环境搭建(图文)
2020/02/18 Python
村长党的群众路线教育实践活动个人对照检查材料
2014/09/23 职场文书
局领导领导班子四风对照检查材料
2014/09/27 职场文书
初中教师个人总结
2015/02/10 职场文书
公司财务经理岗位职责
2015/04/08 职场文书
学习十八大的感悟
2015/08/11 职场文书