AttributeError:module' easygui'没有属性' msgbox'

时间:2016-06-06 04:17:07

标签: python easygui

我第一次尝试使用easygui,我不断收到错误消息:

  

AttributeError:module' easygui'没有属性' msgbox'

有没有一种简单的方法可以解决这个问题?

我的代码是

import easygui as eg 
eg.msgbox("Hello, world!")

1 个答案:

答案 0 :(得分:0)

您的导入声明错误。您需要从easygui导入msgbox包。

你可以这样做:

 from easygui import* # this will import all the packages from easygui

或者像这样:

 from easygui import msgbox
 msgbox(your message, title)

有关详细信息,请参阅此链接:

  

http://easygui.readthedocs.io/en/latest/tutorial.html#using-easygui