发布网友 发布时间:2022-04-26 08:20
共4个回答
热心网友 时间:2022-04-18 10:08
1、在python3.4中,原来的tkMessageBox变成tkinter.messagebox,效果如下图。
扩展资料
python的应用
1、系统编程:提供API(Application Programming Interface应用程序编程接口),是很多系统管理员理想的编程工具。
2、图形处理:有PIL、Tkinter等图形库支持,能方便进行图形处理。
3、数学处理:NumPy扩展提供大量与许多标准数学库的接口。
4、文本处理:python提供的re模块能支持正则表达式,还提供SGML,XML分析模块,许多程序员利用python进行XML程序的开发。
5、数据库编程:程序员可通过遵循Python DB-API(数据库应用程序编程接口)规范的模块与Microsoft SQL Server,Oracle,Sybase,DB2,MySQL、SQLite等数据库通信。
6、python自带有一个Gadfly模块,提供了一个完整的SQL环境。
7、网络编程:提供丰富的模块支持sockets编程,能方便快速地开发分布式应用程序。
8、Web编程:应用的开发语言,支持最新的XML技术。
9、多媒体应用:Python的PyOpenGL模块封装了“OpenGL应用程序编程接口”,能进行二维和三维图像处理。
10、pymo引擎:PYMO全称为python memories off,是一款运行于Symbian S60V3,Symbian3,S60V5, Symbian3, Android系统上的AVG游戏。
参考资料:
百度百科-python
热心网友 时间:2022-04-18 11:26
在python3.4中,原来的tkMessageBox变成tkinter.messagebox,使用方式如下:
import tkinter.messagebox效果如下:
备注:
tkinter.messagebox中有如下函数:
askokcancel(title=None, message=None, **options)
Ask if operation should proceed; return true if the answer is ok
askquestion(title=None, message=None, **options)
Ask a question
askretrycancel(title=None, message=None, **options)
Ask if operation should be retried; return true if the answer is yes
askyesno(title=None, message=None, **options)
Ask a question; return true if the answer is yes
askyesnocancel(title=None, message=None, **options)
Ask a question; return true if the answer is yes, None if cancelled.
showerror(title=None, message=None, **options)
Show an error message
showinfo(title=None, message=None, **options)
Show an info message
showwarning(title=None, message=None, **options)
Show a warning message
热心网友 时间:2022-04-18 13:01
question in stackoverflow and below is the solution:热心网友 时间:2022-04-18 14:52
你好: