私はこのコードを持っています(文字列内のすべての順列の出現を出力します)
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));
文字列変数にあるすべての順列出現を出力したい。
順列が同じ長さではないので、幅を修正して次のような素敵なものに印刷したいと思います。
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
どうすれば使用できformat
ますか?
私はこれらの投稿を見つけましたが、英数字の文字列ではうまくいきませんでした: