我有一个嵌套的配对数据列表,格式如下:
mylist = [['item1', 'some other stuff', 'value1'],['item1', 'some other stuff', 'value2'],['item2', 'some other stuff', 'value3'],['item2', 'some other stuff', 'value4']]
我不知道如何执行以下操作,但我需要:
我需要将列表分组为:
[['item1', 'value1', 'value2'], ['item2', 'value3', 'value4']]
因此,对于我的项目列表,如果项目在列表中以不同的值重复多次,则所有值都应与其对应的项目分组。
任何帮助将不胜感激。
谢谢