发布时间:2019-07-25 09:14:18编辑:auto阅读(2870)
>>> 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')]
>>>
上一篇: Python中的整除
下一篇: Python学习之day3数据结构之列表
54067
40829
35338
31002
25895
25631
24067
19595
15671
15152
1874°
1726°
1820°
1891°
1892°
2059°
2018°
1849°
1937°
1920°