1、安装easygui
2、使用
1)使用easygui.msgbox(“")
例子:eg.msgbox("hello")
2)按钮buttonbox()方法
例子:
sex = eg.buttonbox("你的性别 ",choices = ['male','female'] )
eg.msgbox("你的性别"+sex)
3)choicebox()方法
例子:
#选择一项
flavor = eg.choicebox("你喜欢什么:",choices = ['apple','banana','grape'])
#输出选择的内容
eg.msgbox("选择是:"+flavor)
4)文本输入
之前可以通过raw_input()函数进行文本的输入,gui情况下如何实现呢?
easygui中提供了一个enterbox方法,可以实现文本输入的功能
例子:
flavor = eg.enterbox("你的爱好")
eg.msgbox("你的爱好是"+flavor)
5)其他的控件
可以通过使用help功能查找相关的帮助