Espero la misma salida para ambos scripts a continuación.Imagen en un botón
Pero no obtengo la imagen en el botón cuando ejecuto Script 1. Sin embargo, Script 2 funciona bien.
Escritura 1
from Tkinter import *
class fe:
def __init__(self,master):
self.b=Button(master,justify = LEFT)
photo=PhotoImage(file="mine32.gif")
self.b.config(image=photo,width="10",height="10")
self.b.pack(side=LEFT)
root = Tk()
front_end=fe(root)
root.mainloop()
Guión 2
from Tkinter import *
root=Tk()
b=Button(root,justify = LEFT)
photo=PhotoImage(file="mine32.gif")
b.config(image=photo,width="10",height="10")
b.pack(side=LEFT)
root.mainloop()
Gran! ¡Gracias! – coder
Supongo que querías decir "Cuando' __init__' sale ", no" existe ". – martineau
@martineau: sí, gracias. He editado la respuesta. –