发布网友 发布时间:2022-04-23 12:06
共1个回答
热心网友 时间:2023-10-12 21:28
>>> import itertools
>>> list(itertools.combinations('abc', 2))
[('a', 'b'), ('a', 'c'), ('b', 'c')]
>>> list(itertools.permutations('abc',2))
[('a', 'b'), ('a', 'c'), ('b', 'a'), ('b', 'c'), ('c', 'a'), ('c', 'b')]
>>>
差不多这个区别吧 排列 和 组合