如果我有这样的列表,如何将来自不同列表的两个项目连接在一起:
data_list = [['Toys', 'Communications', 'Leather'], ['Teddy', 'Mobile', 'Hand'], ['bear', 'phone', 'bag']]
我使用 zip 函数将它们转换成这样的元组:
data_tupled_list = zip(*data_list)
结果如下:
[('Toys', 'Teddy', 'bear'),
('Communications', 'Mobile', 'phone'),
('Leather', 'Hand', 'bag')]
我想要一个这样的列表:
[('Toys', 'Teddybear'),
('Communications', 'Mobilephone'),
('Leather', 'Handbag')]