***
for album_s in albums:
image = ImageTk.PhotoImage(file = str(album_s))
album_button = Button(root,
image = image,
width = 120, height = 120,
command = lambda: print('click'))
album_button.image = image
album_button.pack()
create_albums()
***