如何以固定宽度打印字符串?


103

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

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呢?

我找到了这些帖子,但与字母数字字符串的配合并不理想:

python字符串格式固定宽度

使用python设置固定长度


1
怎么样打印'%10S' % '的MyString'
TJD

2
感到惊讶的"\t"是,在任何解决方案中都未将其列为选项。

Answers:


112

编辑2013-12-11-这个答案很老了。它仍然是有效且正确的,但是关注此问题的人们应该更喜欢新格式的语法

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

>>> print '%5s' % 'aa'
   aa
>>> print '%5s' % 'aaa'
  aaa
>>> print '%5s' % 'aaaa'
 aaaa
>>> print '%5s' % 'aaaaa'
aaaaa

基本上:

  • %字符运筹学蟒蛇它将不得不替代的东西令牌
  • s字符运筹学蟒蛇令牌将是一个字符串
  • 5(或任意你想要的号码)通知蟒蛇垫字符串用空格最多5个字符。

在您的特定情况下,可能的实现可能类似于:

>>> 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模块的存在。例如,您可以使用以下命令在一行中获取所有组合的列表:

>>> [''.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']

,您可以combinations结合使用来获得出现次数count()


24
您也许应该提到,负数会给出左对齐的填充输出。对于初学者来说,这几乎是不直观的。
三胞胎

@tripleee +1,如果没有您的负数给出左对齐的评论,我会被打得更长……m8。
Briford Wylie 2014年

这比新的str.format更加直观和简洁。我不明白为什么会存在这种推朝着卷积蟒蛇
scottmrogowski

有没有办法用特定字符填充空白?例如,如果我们需要打印“ 05”而不是“ 5”
Harshit Jindal

1
这是在Medium上使用f字符串进行优雅定宽打印的更多技巧。
pfabri

197

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

>>> '{0: <5}'.format('ss')
'ss   '
>>> '{0: <5}'.format('sss')
'sss  '
>>> '{0: <5}'.format('ssss')
'ssss '
>>> '{0: <5}'.format('sssss')
'sssss'

如果要使字符串正确对齐,请使用>代替<

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

编辑:如注释中所述:0表示传递给的参数的索引str.format()


5
另外,0表示format参数的位置,因此您可以做另外两件事: '{<5}'.format('ss') 'ss '像以前一样,但是如果没有0,它会做同样的事情, 'Second {1: <5} and first {0: <5}'.format('ss', 'sss') 'Second sss and first ss '因此您可以在单个输出中重新排序甚至输出相同的变量很多次串。
13

14
我无法再编辑需要它的先前评论。{<5}不起作用,但{: <5}没有索引值也可以起作用。
2013年

9
这是描述这些格式字符串和其他选项的Python 格式规范迷你语言。为便于参考,在空间{0: <5}的是[fill] ,该<[align]5[width]
cod3monk3y

2
那5可以作为变量替换>>> print width 20 >>> print "{0: <{width}}".format("ssssss", width=width).split('\n') ['ssssss '] >>>
user2763554 '16

4
您也可以使用数字,并仅按顺序列出变量width=10; "{0: <{1}}".format('sss', width)。甚至忽略数字'{: <{}}'.format('sss', width)
joelostblom

71

最初是作为对@ 0x90答案的编辑而发布的,但是由于偏离了帖子的原始意图而被拒绝,建议将其发布为评论或答案,因此,我在此处包括简短的文章。

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

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

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

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

甚至不考虑所有数字,以获得最大的,可能是非Python隐式的紧凑性:

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

更新2017-05-26

随着Python 3.6 中格式化字符串文字(简称为“ f-strings”)的引入,现在可以使用更简短的语法访问先前定义的变量:

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

这也适用于字符串格式

>>> width=10
>>> string = 'sss'
>>> f'{string: <{width}}'
'sss       '

我最喜欢这个答案!
Syrtis Major

10

format绝对是最优雅的方法,但是afaik不能在python的logging模块中使用它,因此这是使用%格式化的方法:

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

在此,-表示左对齐,而前面的数字s表示固定宽度。

一些示例输出:

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#string-formatting-operations


但是,这不会将字符串缩短到20个字符以上。使用'%(name)20.20s'将20设置为最小和最大字符串长度!
xjcl

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.