我有这段代码(打印字符串中所有排列的出现)
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
来做到这一点?
我找到了这些帖子,但它不适合字母数字字符串:
原文由 0x90 发布,翻译遵循 CC BY-SA 4.0 许可协议
编辑 2013-12-11 - 这个答案很老了。它仍然是有效和正确的,但是看到这个的人应该更喜欢 新的格式语法。
您可以像这样使用 字符串格式:
基本上:
%
字符通知 python 它必须用一些东西代替一个令牌s
字符通知 python 令牌将是一个字符串5
(或任何你想要的数字)通知python用最多5个字符的空格填充字符串。在您的特定情况下,可能的实现可能如下所示:
旁注 : 只是想知道您是否知道
itertools
模块 的存在。例如,您可以在一行中获取所有组合的列表:您可以通过使用
combinations
和count()
来获得出现次数。