If I use the code below like
photo_label = Label(root, image=photos[0]).pack()
and print(type(photo_label)) it come up nonetype but if use it seperated like below then it's a tkinter label. why this happening?
photo_label = Label(root, image=photos[0])
photo_label.pack()