Tkinter:尝试一起使用图像和文本,图像在更改后保留

时间:2013-11-19 23:57:27

标签: python tkinter

人。我正在为一个学校项目编写一些代码,我正在计划一个基本的应用程序。我试图在def中保留一张图片,但切换后图像仍然存在。当你改变功能时,我怎么能让它消失?我的代码:

def acceleration():
    var.set("Acceleration \n \n \n \n \n \n Acceleration is defined as: \n 'the increase in the rate or speed of something. \n How could this be used in code?' \n \n \n")
    photo = PhotoImage(file="accel.gif")
    img = Label(root, image=photo)
    img.photo = photo
    img.pack();

谢谢大家! 〜布雷登

P.S。如果有必要,我很乐意给你整个剧本,但我认为不会。

0 个答案:

没有答案