Answers for "return all combinations of char in list python"

4

python print combinations of string

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']
Posted by: Guest on May-26-2021
3

python print combinations of 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])
Posted by: Guest on May-26-2021
-1

return all combinations of char in list python

import itertools
set = "abcde"
for L in range(0, len(set) + 1)
	for subset in itertools.combinations(letters, L): #all combinations in subset
    	list_comb.append(subset)
Posted by: Guest on October-07-2021

Code answers related to "return all combinations of char in list python"

Python Answers by Framework

Browse Popular Code Answers by Language