关于python:如何将打印输出或字符串格式化为固定宽度?

How to format print output or string into fixed width?

我有这个代码(打印字符串中所有排列的出现)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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));

我要打印所有出现在字符串变量中的排列。

由于排列的长度不同,我想固定宽度,并将其打印在一个不错的位置,而不是像下面这样:

1
2
3
4
5
6
7
8
9
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来做呢?

我找到了这些帖子,但它与字母数字字符串不匹配:

python字符串格式固定宽度

用python设置固定长度


我发现使用str.format更优雅:

1
2
3
4
5
6
7
8
>>> '{0: <5}'.format('ss')
'ss   '
>>> '{0: <5}'.format('sss')
'sss  '
>>> '{0: <5}'.format('ssss')
'ssss '
>>> '{0: <5}'.format('sssss')
'sssss'

如果希望字符串与正确使用的>而不是<对齐:

1
2
>>> '{0: >5}'.format('ss')
'   ss'

编辑:如注释所述:0表示格式参数的索引。


编辑2013-12-11-这个答案很古老。它仍然有效和正确,但是研究它的人应该更喜欢新的格式语法。

您可以使用如下字符串格式:

1
2
3
4
5
6
7
8
>>> print '%5s' % 'aa'
   aa
>>> print '%5s' % 'aaa'
  aaa
>>> print '%5s' % 'aaaa'
 aaaa
>>> print '%5s' % 'aaaaa'
aaaaa

基本上:

  • %字符通知python它必须将某些内容替换为令牌。
  • s字符通知python令牌将是字符串
  • 5通知python用最多5个字符的空格填充字符串。

在您的特定情况下,可能的实现如下所示:

1
2
3
4
5
6
7
>>> dict_ = {'a': 1, 'ab': 1, 'abc': 1}
>>> for item in dict_.items():
...     print 'value %3s - num of occurances = %d' % item # %d is the token of integers
...
value   a - num of occurances = 1
value  ab - num of occurances = 1
value abc - num of occurances = 1

旁注:只是想知道您是否知道itertools模块的存在。例如,您可以在一行中获得所有组合的列表,其中包括:

1
2
>>> [''.join(perm) for i in range(1, len(s)) for perm in it.permutations(s, i)]
['a', 'b', 'c', 'd', 'ab', 'ac', 'ad', 'ba', 'bc', 'bd', 'ca', 'cb', 'cd', 'da', 'db', 'dc', 'abc', 'abd', 'acb', 'acd', 'adb', 'adc', 'bac', 'bad', 'bca', 'bcd', 'bda', 'bdc', 'cab', 'cad', 'cba', 'cbd', 'cda', 'cdb', 'dab', 'dac', 'dba', 'dbc', 'dca', 'dcb']

你可以通过使用combinationscount()来获得出现的次数。


最初作为编辑发布到@0x90的回复,但由于偏离了帖子的初衷而被拒绝,建议作为评论或回复发布,所以我在这里列出了简短的评论。

除了@0x90的答案之外,还可以通过使用宽度变量(根据@user2763554的注释)使语法更加灵活:

1
2
width=10
'{0: <{width}}'.format('sss', width=width)

此外,您可以通过仅使用数字并依赖传递给format的参数的顺序,使此表达式更简洁:

1
2
width=10
'{0: <{1}}'.format('sss', width)

或者甚至去掉所有的数字来表示最大的,潜在的非肾盂内隐的,紧凑的:

1
2
width=10
'{: <{}}'.format('sss', width)

更新日期:2017-05-26

在python 3.6中引入了格式化字符串文本(简称"f-strings"),现在可以使用简单语法访问以前定义的变量:

1
2
3
>>> name ="Fred"
>>> f"He said his name is {name}."
'He said his name is Fred.'

这也适用于字符串格式

1
2
3
4
>>> width=10
>>> string = 'sss'
>>> f'{string: <{width}}'
'sss       '

format无疑是最优雅的方式,但是afaik您不能将它与python的logging模块一起使用,因此下面介绍如何使用%格式:

1
2
3
formatter = logging.Formatter(
    fmt='%(asctime)s | %(name)-20s | %(levelname)-10s | %(message)s',
)

这里,-表示左对齐,s前面的数字表示固定宽度。

一些样本输出:

1
2
3
4
2017-03-14 14:43:42,581 | this-app             | INFO       | running main
2017-03-14 14:43:42,581 | this-app.aux         | DEBUG      | 5 is an int!
2017-03-14 14:43:42,581 | this-app.aux         | INFO       | hello
2017-03-14 14:43:42,581 | this-app             | ERROR      | failed running main

文档中的更多信息:https://docs.python.org/2/library/stdtypes.html字符串格式化操作