- 授权协议: BSD
- 开发语言: Python
- 操作系统: 跨平台
- 软件首页: https://github.com/robertlugg/easygui
- 软件文档: http://easygui.readthedocs.io/en/master/
软件介绍
EasyGUI 是一个用 Python 编写的非常简易的 GUI 编程模块。 EasyGUI 不同于其他 GUI 库,EasyGUI 不是事件驱动的。 相反,所有的 GUI 交互都是通过简单的函数调用来调用的。
EasyGUI 运行在 Python2 和3 上,除了 python 之外没有任何依赖。
举例:
>>> import easygui >>> easygui.ynbox('Shall I continue?', 'Title', ('Yes', 'No')) 1 >>> easygui.msgbox('This is a basic message box.', 'Title Goes Here') 'OK' >>> easygui.buttonbox('Click on your favorite flavor.', 'Favorite Flavor', ('Chocolate', 'Vanilla', 'Strawberry')) 'Chocolate'
Algorithms
Sanjoy Dasgupta、Christos H. Papadimitriou、Umesh Vazirani / McGraw-Hill Education / 2006-10-16 / GBP 30.99
This text, extensively class-tested over a decade at UC Berkeley and UC San Diego, explains the fundamentals of algorithms in a story line that makes the material enjoyable and easy to digest. Emphasi......一起来看看 《Algorithms》 这本书的介绍吧!