📌  相关文章
📜  对相互引用的两个列表进行排序 - TypeScript 代码示例

📅  最后修改于: 2022-03-11 14:48:23.688000             🧑  作者: Mango

代码示例1
>>> list1 = [3,2,4,1, 1]
>>> list2 = ['three', 'two', 'four', 'one', 'one2']
>>> list1, list2 = zip(*sorted(zip(list1, list2)))
>>> list1
(1, 1, 2, 3, 4)
>>> list2 
('one', 'one2', 'two', 'three', 'four')