你可以使用zip
:
>>> zip(li1, li2)>>> list(zip(li1, li2)) [(['a', 'b', 'c'], ['c', 'a', 'b']), (['c', 'd', 'e'], ['c', 'e', 'd'])]
并且all
:
>>> all([True, True, True]) True >>> all([True, False, True]) False
k = all(sorted(x) == sorted(y) for x, y in zip(li1, li2))