superman746 发表于 2021-8-7 10:23:36

求助65讲tkinter的情况

和课程例子代码一样,只是文件路径的有差别,标红部分,但不停报错。
报错信息:
---------------------------------------------------------------------------
TclError                                  Traceback (most recent call last)
<ipython-input-8-cc75a9225398> in <module>
      4
      5 photo = PhotoImage(file = r"D:\百度云同步盘\Python材料\study\practice\hi.gif")
----> 6 imgLabel = Label(root,image = photo)
      7 imgLabel(side = RIGHT)
      8

~\Anaconda3\lib\tkinter\__init__.py in __init__(self, master, cnf, **kw)
   2764
   2765         """
-> 2766         Widget.__init__(self, master, 'label', cnf, kw)
   2767
   2768 class Listbox(Widget, XView, YView):

~\Anaconda3\lib\tkinter\__init__.py in __init__(self, master, widgetName, cnf, kw, extra)
   2297             del cnf
   2298         self.tk.call(
-> 2299             (widgetName, self._w) + extra + self._options(cnf))
   2300         for k, v in classes:
   2301             k.configure(self, v)

TclError: image "pyimage5" doesn't exist

或者还有报错的情况如下:
TypeError: 'Label' object is not callable

求大神们指导

代码:
from tkinter import *
root =Tk()
textLabel = Label(root,text="您所下载的页面不适合未成年人")
textLabel.pack(side = LEFT)

photo = PhotoImage(file = r"D:\百度云同步盘\Python材料\study\practice\hi.gif")
imgLabel = Label(root,image = photo)
imgLabel(side = RIGHT)

mainloop()

superman746 发表于 2021-8-7 13:48:47

本帖最后由 superman746 于 2021-8-7 13:50 编辑

放在同一个目录里好像可以了。。。但路径为啥总是不对很奇怪。而且在jupyter notebook里是不行的,只有Natepad++可以。。。求指导
from tkinter import *
root =Tk()
textLabel = Label(root,text="您所下载的页面不适合未成年人")
textLabel.pack(side = LEFT)

photo = PhotoImage(file = "hi.gif")
imgLabel = Label(root,image = photo)
imgLabel.pack(side = RIGHT)

mainloop()

大马强 发表于 2021-8-7 19:11:53

你用个idle不香吗

大马强 发表于 2021-8-7 19:16:43

superman746 发表于 2021-8-7 13:48
放在同一个目录里好像可以了。。。但路径为啥总是不对很奇怪。而且在jupyter notebook里是不行的,只有Nate ...

我刚刚试了你的代码,vscode没问题,感觉这种应该和工具有关,换一个好点,idle也香呀

superman746 发表于 2021-8-8 09:35:23

大马强 发表于 2021-8-7 19:16
我刚刚试了你的代码,vscode没问题,感觉这种应该和工具有关,换一个好点,idle也香呀

你说的很有道理(泪)
页: [1]
查看完整版本: 求助65讲tkinter的情况