bonjour
je cherche a afficher 10 images avec tkinter grace a une boucle or seul la derniere est afficher. J’utilise pourtant la meme methode que pour afficher 10 textes qui s’affiche très bien.
for i in range(10):
tempah = Label(buttom_frame,text=str(data['hourly']['temperature_2m'][heure_act + i +24 * jourselect]) +"°C \n" + str(heure_act + i) + "H",bg=couleuract)
tempah.place(rely=0.8,relx=0.1*i, relwidth=0.1, relheight=0.2)
ptitimg0 = PhotoImage(file=str(dic_couleur_fond[sky(jourselect,int(heure_act+i))][2] ), width=125, height=125)
f0 = Label(buttom_frame, image=ptitimg0,bg =couleuract)
f0.update()
f0.place(rely=0.2,relx=0.1*i,relwidth=0.1, relheight=0.6 )