我第一次尝试使用easygui
,我不断收到错误消息:
AttributeError:module' easygui'没有属性' msgbox'
有没有一种简单的方法可以解决这个问题?
我的代码是
import easygui as eg
eg.msgbox("Hello, world!")
答案 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