AttributeError: 'PhotoImage' object has no attribute '_PhotoImage__photo'
程序员文章站
2022-03-26 23:18:11
...
记录一个最近老爱犯的低级错误,AttributeError
对,就是参数错误,最近老爱犯。
这几天在学校Python GUI 方面的东西,然后参数名只能手写,然后经常看到眼熟的提示,xxx has no attribute xxxxx
大概就是这样的东西
然后仔细检查了一遍好像代码没啥错,再一看也没啥错,找了半天,后来发现,是括号里的参数名要么多了个字母,要么少了个字母。。。。一口老血。
然后现在终于犯错犯出经验来了,以后但凡看到类似的报错先去括号里面检查下参数名写对了没有。
imgobj=PhotoImage(file=imgpath)#原本应该是这样的
imgobj=PhotoImage(fle=imgpath)#结果,我写成了这样。然后还经常出现类似的低级错误,由于经验不足还一脸懵逼。。。
好啦,先记录一下,以此警醒自己。
吃一堑长一智,这大概就是我等笨鸟的升级打怪的套路了,当然天才神人才不会犯这样的错误啦
上一篇: Web Fonts (二) OTF/TTF 转 WOFF
下一篇: latex字体设置
推荐阅读
-
python编程排除163邮箱发送邮件报错(AttributeError: ‘tuple‘ object has no attribute ‘encode‘)
-
AttributeError: module ‘community‘ has no attribute ‘best_partition‘ 问题解决方法
-
【python】解决AttributeError: module ‘scipy.misc‘ has no attribute ‘toimage‘问题
-
【Tensorflow】Linux下Tensorflow报错:AttributeError: module ‘tensorflow‘ has no attribute ‘xxxx‘
-
AttributeError: 'module' object has no attribute 'main'
-
AttributeError: module 'sklearn' has no attribute 'linear_model'
-
解决Keras报错AttributeError: 'NoneType' object has no attribute 'inbound_nodes'
-
解决'DataFrame' object has no attribute 'sort'
-
‘MyObject‘ object has no attribute ‘***‘
-
AttributeError: ‘NoneType‘ object has no attribute ‘origin‘解决办法