I have two lists (both are already ordered correctly and contain 180.000 items each). The first one contains the filenames.
filenames[0]
s01_l01/1000_1.png
The second list contains the labels of the files.
labels[0]
'1BK 7475'
How do I now get a list, which looks like this: [[filename_1, label_1], [filename_2, label_2],..., [filename_n, label_n]]?
list_of_filenames_labels[0]
[s01_l01/1000_1.png, '1BK 7475']
Thanks a lot!