| 1 | initial version |
If you want permutations, then you can use Permutations generator:
t = ['a','b','c','d']
for p in Permutations(t):
print(p)
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.