我想知道如何根据示例列表重新排序列表列表。这是一个澄清我的问题的例子:
["Foo", "Bar", "Something"]
那是示例列表,现在我想重新排序下面显示的列表,只查看其中每个列表的头部:
[["Something", "one", "two", "three"], ["Foo", "four", "five", "six"],
["Bar", "seven", "eight", "nine"]]
对此:
[["Foo", "four", "five", "six"], ["Bar", "seven", "eight", "nine"],
["Something", "one", "two", "three"]]
谢谢
编辑:
我尝试映射一个交换两个元素的交换函数,但这不起作用,因为我在这里处理两个列表。