“So drucken Sie alle Kombinationen einer Saite in Python” Code-Antworten

So drucken Sie alle Kombinationen einer Saite in Python

test_str = "abc"
res = [test_str[i: j] for i in range(len(test_str)) 
          for j in range(i + 1, len(test_str) + 1)]
print(res)#['a', 'ab', 'abc', 'b', 'bc', 'c']
Lost Lisa

Python -Druckkombinationen von String

import itertools
 
if __name__ == '__main__':
 
    nums = list("ABC")
    permutations = list(itertools.permutations(nums))
 
    # Output: ['ABC', 'ACB', 'BAC', 'BCA', 'CAB', 'CBA']
    print([''.join(permutation) for permutation in permutations])
Lost Lisa

Ähnliche Antworten wie “So drucken Sie alle Kombinationen einer Saite in Python”

Fragen ähnlich wie “So drucken Sie alle Kombinationen einer Saite in Python”

Weitere verwandte Antworten zu “So drucken Sie alle Kombinationen einer Saite in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen