0

我正在使用这段代码:

if imgAct < len(limg):
    img = ImageTk.PhotoImage(Image.open(path+limg[imgAct]))
    f=etiq.config(image = img)
    f.pack(side = "bottom", fill = "both", expand = "yes")
    f.pack(side = "bottom", fill = "both", expand = "yes")

但我得到这个错误:

AttributeError: NoneType对象没有属性pack

如何解决此错误?

4

1 回答 1

6

fNone在通话中设置为:

f = etiq.config (image = img)

这就是导致错误的原因:

AttributeError: 'NoneType' object has no attribute 'pack'

当你做f.pack().

您需要对该None返回值进行排序。在这个特定方面,我无能为力,因为粗略的谷歌搜索etiq出现了“对于想要获得有关雌激素治疗的可靠事实的女性”,我很确定这与您正在使用的图书馆无关: -)

于 2013-04-24T03:49:51.083 回答