Hi All,
I wanna generate all possible combination of certain list using python.
For Example I have a list like
list = ['A','B','C']
I wanna generate all possible combination of these list elements like using "itertools":
AAA
AAB
AAC
ABA
ABB
ABC
ACA
ACB
ACC
BAA
BAB
BAC
BBA
BBB
BBC
BCA
BCB
BCC
CAA
CAB
CAC
CBA
CBB
CBC
CCA
CCB
CCC
Thanks!