I have two lists:
gizmos = [('gizmo1', 314),
('gizmo1', 18),
('gizmo1', 72),
('gizmo1', 2),
('gizmo1', 252)]
owner = ['owner1','owner3','owner32']
My goal result is to two combine both list into a new list, looping every other element:
newlist= [('owner1','gizmo1', 314),
('gizmo1', 18),
('owner3','gizmo1', 72),
('gizmo1', 2),
('owner32','gizmo1', 252)]
I attempted to zip
the 3 lists but due to the lengths not matching this does not work.