Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,914 questions

51,847 answers

573 users

How to generate all possible permutations and combinations of a list of chars in Python

1 Answer

0 votes
from itertools import permutations, combinations

def main():
    input_chars = ['a', 'b', 'c']

    print("All permutations:")
    for p in permutations(input_chars):
        print(" ".join(p))

    print("\nAll combinations:")
    size = len(input_chars)
    for r in range(1, size + 1):  # combinations of size 1..n
        for ch in combinations(input_chars, r):
            print(" ".join(ch))

if __name__ == "__main__":
    main()



'''
run:

All permutations:
a b c
a c b
b a c
b c a
c a b
c b a

All combinations:
a
b
c
a b
a c
b c
a b c

'''

 



answered Nov 21, 2025 by avibootz

Related questions

...