I have three lists as stated. There are in different orders.
list1 = ['frame1', 'frame3', 'frame5', 'frame7']
list2 = ['.102', '.103', '.104', '.105']
list3 = ['.ext', '.ext', '.ext', '.ext']
How would one combine the three lists to make sense?
frame1, .102, .ext
When I do print(list1 + list2 + list3)
of course the output will be:
frame1, frame3, frame5, frame7, .102, .103, .ext, .ext
I need my output to be like I said above, frame1, .102, .ext