Mam ten kod (wypisuje wystąpienie wszystkich permutacji w ciągu)
def splitter(str):
for i in range(1, len(str)):
start = str[0:i]
end = str[i:]
yield (start, end)
for split in splitter(end):
result = [start]
result.extend(split)
yield result
el =[];
string = "abcd"
for b in splitter("abcd"):
el.extend(b);
unique = sorted(set(el));
for prefix in unique:
if prefix != "":
print "value " , prefix , "- num of occurrences = " , string.count(str(prefix));
Chcę wydrukować całe wystąpienie permutacji w zmiennej łańcuchowej.
ponieważ permutacja nie jest tej samej długości, chcę poprawić szerokość i wydrukować ją w ładnym, innym niż ten:
value a - num of occurrences = 1
value ab - num of occurrences = 1
value abc - num of occurrences = 1
value b - num of occurrences = 1
value bc - num of occurrences = 1
value bcd - num of occurrences = 1
value c - num of occurrences = 1
value cd - num of occurrences = 1
value d - num of occurrences = 1
Jak mogę format
to zrobić?
Znalazłem te posty, ale nie pasowały do ciągów alfanumerycznych: