I haven't found a similar question with a solution here, so I'll ask your help.
There are 2 lists, one of which is list of lists:
categories = ['APPLE', 'ORANGE', 'BANANA']
test_results = [['17.0', '12.0'], ['21.0', '15.0'], ['7.0', '6.0']]
As a final result I would like to split it by 2 separate lists of lists:
[['APPLE','17.0']['ORANGE','21.0']['BANANA','7.0']]
[['APPLE','12.0']['ORANGE','15.0']['BANANA','6.0']]
I tried to create loops but I have nothing to share. Any ideas are appreciated.