如何在python中创建顺序组合列表?

前端之家收集整理的这篇文章主要介绍了如何在python中创建顺序组合列表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个列表[‘a’,’b’,’c’,’d’]我需要一个列表[‘a’,’ab’,’abc’,’abcd’,’ bc’,’bcd’,’cd’,’d’].

我一直在看itertools,但我没有看到如何使这项工作.

对于all combinations,代码将是:

from itertools import permutations
stuff = ['a','b','c','d']
for i in range(0,len(stuff)+1):
    for subset in permutations(stuff,i):
           print(subset)

如果只返回顺序组合,我需要做什么?我想我可以随时检查每个排列的顺序,但这似乎不是最好的方法.

解决方法

很简单:
stuff = ['a','d']
print([''.join(stuff[i:j]) for i in range(len(stuff)) for j in range(i+1,len(stuff)+1)])

['a','ab','abc','abcd','bc','bcd','cd','d']
原文链接:https://www.f2er.com/python/185614.html

猜你在找的Python相关文章