I have few arrays and want to create a bigger_array containing all combination of them, using python. it can have more than two arrays.
But here we take two only.
video4=[1435,1002]
file_list=['file_1.ts','file_2.ts']
bigger_array=[['file_1.ts', 1435],['file_2.ts', 1002],
['file_1.ts', 1002],['file_2.ts', 1435]]