Python—easygui之三种输入类函数
导入easgui: import easygui as g 1.integerbox() 函数 integerbox(msg=’’, title=’ ‘, default=None, lowerbound=0, upperbound=99, image=None, root=None) 不设置任何参数: g.integerbox() 默认输入0~99中的一个整数,我们可以修改范围: msg = '请输入您的幸运数字(0~9):' title = '幸运测评' image = '烟花.gif' g.integerbox(msg, title, lowerbound=0, upperboun
下载地址
用户评论