如何将零填充到字符串?


Answers:


2389

字串:

>>> n = '4'
>>> print(n.zfill(3))
004

对于数字:

>>> n = 4
>>> print(f'{n:03}') # Preferred method, python >= 3.6
004
>>> print('%03d' % n)
004
>>> print(format(n, '03')) # python >= 2.6
004
>>> print('{0:03d}'.format(n))  # python >= 2.6 + python 3
004
>>> print('{foo:03d}'.format(foo=n))  # python >= 2.6 + python 3
004
>>> print('{:03d}'.format(n))  # python >= 2.7 + python3
004

字符串格式化文档


3
类型'float'的对象的未知格式代码'd'。
Cees Timmerman 2014年

7
评论python >= 2.6不正确。该语法不适用于python >= 3。您可以将其更改为python < 3,但是我是否可以建议始终使用括号并完全忽略注释(鼓励使用推荐用法)?
詹森·库姆斯

4
请注意,您不需要编号格式字符串:'{:03d} {:03d}'.format(1, 2)隐式地按顺序分配值。

1
@ JasonR.Coombs:我假设您的意思是print声明,何时该声明应为printPython 3上的函数?我在括号内编辑;由于只打印一件事,因此现在它在Py2和Py3上的工作方式相同。
ShadowRanger


353

只需使用字符串对象的rjust方法即可。

本示例将使一个10个字符长的字符串,必要时进行填充。

>>> t = 'test'
>>> t.rjust(10, '0')
>>> '000000test'

123

此外zfill,您可以使用常规的字符串格式:

print(f'{number:05d}') # (since Python 3.6), or
print('{:05d}'.format(number)) # or
print('{0:05d}'.format(number)) # or (explicit 0th positional arg. selection)
print('{n:05d}'.format(n=number)) # or (explicit `n` keyword arg. selection)
print(format(number, '05d'))

字符串格式f-strings的文档。


3
PEP 3101并未声明已以任何方式弃用%。
zwirbeltier

@zwirbeltier PEP 3101解释了如何使用格式,这就是我的意思。
康拉德·鲁道夫2014年

4
“编辑”仍然指出“……不赞成使用这种格式化方法……”。
zwirbeltier

1
@zwirbeltier是的,不建议使用。但这并未在PEP中直接说明。但是,该文档说要使用它format,而人们通常将其解释为不赞成使用的意图。
康拉德·鲁道夫2014年

1
@LarsH感谢您找到这个。因此它们严重落后于计划(Python 3.1不在将来,而是在遥远的过去)。鉴于此,我仍然不认为答案是误导性的,只是每次Python开发计划朝着新的任意方向更改时都没有严格更新。无论如何,这给了我机会从我的答案中删除一些无关紧要的东西。
康拉德·鲁道夫

62

对于使用f字符串的Python 3.6+:

>>> i = 1
>>> f"{i:0>2}"  # Works for both numbers and strings.
'01'
>>> f"{i:02}"  # Works only for numbers.
'01'

对于Python 2至Python 3.5:

>>> "{:0>2}".format("1")  # Works for both numbers and strings.
'01'
>>> "{:02}".format(1)  # Works only for numbers.
'01'


39

str(n).zfill(width)可以与strings,ints,floats ...一起使用,并且与Python 2. x和3. x兼容:

>>> n = 3
>>> str(n).zfill(5)
'00003'
>>> n = '3'
>>> str(n).zfill(5)
'00003'
>>> n = '3.0'
>>> str(n).zfill(5)
'003.0'

23

对于那些来这里了解的人,而不仅仅是一个快速的答案。我特别针对时间字符串执行以下操作:

hour = 4
minute = 3
"{:0>2}:{:0>2}".format(hour,minute)
# prints 04:03

"{:0>3}:{:0>5}".format(hour,minute)
# prints '004:00003'

"{:0<3}:{:0<5}".format(hour,minute)
# prints '400:30000'

"{:$<3}:{:#<5}".format(hour,minute)
# prints '4$$:3####'

“ 0”符号用“ 2”填充字符替换,默认为空白

“>”符号会分配字符串左侧的所有2个“ 0”字符

“:”符号format_spec


23

将数字字符串的左边填充零的最有效方法是什么(即,数字字符串具有特定的长度)?

str.zfill 专用于此目的:

>>> '1'.zfill(4)
'0001'

请注意,它专门用于根据请求处理数字字符串,并将a +-移至字符串的开头:

>>> '+1'.zfill(4)
'+001'
>>> '-1'.zfill(4)
'-001'

这是有关的帮助str.zfill

>>> help(str.zfill)
Help on method_descriptor:

zfill(...)
    S.zfill(width) -> str

    Pad a numeric string S with zeros on the left, to fill a field
    of the specified width. The string S is never truncated.

性能

这也是替代方法最有效的方法:

>>> min(timeit.repeat(lambda: '1'.zfill(4)))
0.18824880896136165
>>> min(timeit.repeat(lambda: '1'.rjust(4, '0')))
0.2104538488201797
>>> min(timeit.repeat(lambda: f'{1:04}'))
0.32585487607866526
>>> min(timeit.repeat(lambda: '{:04}'.format(1)))
0.34988890308886766

为了最好地将苹果与苹果进行比较%(请注意,它实际上速度较慢),否则将预先计算:

>>> min(timeit.repeat(lambda: '1'.zfill(0 or 4)))
0.19728074967861176
>>> min(timeit.repeat(lambda: '%04d' % (0 or 1)))
0.2347015216946602

实作

稍微挖掘一下,我发现该zfill方法的实现Objects/stringlib/transmogrify.h

static PyObject *
stringlib_zfill(PyObject *self, PyObject *args)
{
    Py_ssize_t fill;
    PyObject *s;
    char *p;
    Py_ssize_t width;

    if (!PyArg_ParseTuple(args, "n:zfill", &width))
        return NULL;

    if (STRINGLIB_LEN(self) >= width) {
        return return_self(self);
    }

    fill = width - STRINGLIB_LEN(self);

    s = pad(self, fill, 0, '0');

    if (s == NULL)
        return NULL;

    p = STRINGLIB_STR(s);
    if (p[fill] == '+' || p[fill] == '-') {
        /* move sign to beginning of string */
        p[0] = p[fill];
        p[fill] = '0';
    }

    return s;
}

让我们来看一下这个C代码。

它首先在位置上解析参数,这意味着它不允许关键字参数:

>>> '1'.zfill(width=4)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: zfill() takes no keyword arguments

然后,它检查长度是否相同或更长,在这种情况下,它将返回字符串。

>>> '1'.zfill(0)
'1'

zfill电话pad(此pad功能也被称为ljustrjustcenter也)。这基本上将内容复制到一个新的字符串中并填充填充。

static inline PyObject *
pad(PyObject *self, Py_ssize_t left, Py_ssize_t right, char fill)
{
    PyObject *u;

    if (left < 0)
        left = 0;
    if (right < 0)
        right = 0;

    if (left == 0 && right == 0) {
        return return_self(self);
    }

    u = STRINGLIB_NEW(NULL, left + STRINGLIB_LEN(self) + right);
    if (u) {
        if (left)
            memset(STRINGLIB_STR(u), fill, left);
        memcpy(STRINGLIB_STR(u) + left,
               STRINGLIB_STR(self),
               STRINGLIB_LEN(self));
        if (right)
            memset(STRINGLIB_STR(u) + left + STRINGLIB_LEN(self),
                   fill, right);
    }

    return u;
}

调用之后padzfill将任何原始的字符串移到字符串的开头+-开头。

请注意,原始字符串实际上不需要是数字:

>>> '+foo'.zfill(10)
'+000000foo'
>>> '-foo'.zfill(10)
'-000000foo'

为了提高性能,是否有f字符串更好的情况,包括python2 vs python3的用例?另外,我认为zfill并不常见,因此可以帮助您找到与文档的链接
elad silver,

@eladsilver取决于您的意图,请牢记+and -和的行为,我在文档中添加了一个链接!
亚伦·霍尔

17
width = 10
x = 5
print "%0*d" % (width, x)
> 0000000005

有关所有激动人心的细节,请参见打印文档!

适用于Python 3.x的更新(7.5年后)

最后一行现在应该是:

print("%0*d" % (width, x))

print()现在是一个函数,而不是一个语句。请注意,我仍然更喜欢Old School printf()风格,因为IMNSHO读起来更好,并且因为,嗯,自1980年1月以来我一直在使用该符号。


自1980年以来...所以您是60岁的程序员...您能否对"%0*d" % (width, x)python的解释给出更多解释?

15

使用Python时>= 3.6,最干净的方法是使用带字符串格式的f 字符串

>>> s = f"{1:08}"  # inline with int
>>> s
'00000001'
>>> s = f"{'1':0>8}"  # inline with str
>>> s
'00000001'
>>> n = 1
>>> s = f"{n:08}"  # int variable
>>> s
'00000001'
>>> c = "1"
>>> s = f"{c:0>8}"  # str variable
>>> s
'00000001'

我更喜欢使用格式化int,因为只有这样才能正确处理符号:

>>> f"{-1:08}"
'-0000001'

>>> f"{1:+08}"
'+0000001'

>>> f"{'-1':0>8}"
'000000-1'

感谢您提供新的语法示例。fill char'x'将是:v =“ A18”; s = f'{v:x> 8}'+“ |”; 或s = v.ljust(8,“ x”)+“ |”;
Charlie木匠

@Charlie木匠是对我的一个问题还是一个声明?
ruohola

只是一个声明。测试了更多用法。
查理木匠

4

对于保存为整数的邮政编码:

>>> a = 6340
>>> b = 90210
>>> print '%05d' % a
06340
>>> print '%05d' % b
90210

1
您是正确的,无论如何,我还是更喜欢zfill的建议

3

快速时序比较:

setup = '''
from random import randint
def test_1():
    num = randint(0,1000000)
    return str(num).zfill(7)
def test_2():
    num = randint(0,1000000)
    return format(num, '07')
def test_3():
    num = randint(0,1000000)
    return '{0:07d}'.format(num)
def test_4():
    num = randint(0,1000000)
    return format(num, '07d')
def test_5():
    num = randint(0,1000000)
    return '{:07d}'.format(num)
def test_6():
    num = randint(0,1000000)
    return '{x:07d}'.format(x=num)
def test_7():
    num = randint(0,1000000)
    return str(num).rjust(7, '0')
'''
import timeit
print timeit.Timer("test_1()", setup=setup).repeat(3, 900000)
print timeit.Timer("test_2()", setup=setup).repeat(3, 900000)
print timeit.Timer("test_3()", setup=setup).repeat(3, 900000)
print timeit.Timer("test_4()", setup=setup).repeat(3, 900000)
print timeit.Timer("test_5()", setup=setup).repeat(3, 900000)
print timeit.Timer("test_6()", setup=setup).repeat(3, 900000)
print timeit.Timer("test_7()", setup=setup).repeat(3, 900000)


> [2.281613943830961, 2.2719342631547077, 2.261691106209631]
> [2.311480238815406, 2.318420542148333, 2.3552384305184493]
> [2.3824197456864304, 2.3457239951596485, 2.3353268829498646]
> [2.312442972404032, 2.318053102249902, 2.3054072168069872]
> [2.3482314132374853, 2.3403386400002475, 2.330108825844775]
> [2.424549090688892, 2.4346475296851438, 2.429691196530058]
> [2.3259756401716487, 2.333549212826732, 2.32049893822186]

我对不同的重复进行了不同的测试。差异并不大,但是在所有测试中,zfill解决方案都是最快的。


1

另一种方法是将列表理解与长度条件检查结合使用。下面是一个演示:

# input list of strings that we want to prepend zeros
In [71]: list_of_str = ["101010", "10101010", "11110", "0000"]

# prepend zeros to make each string to length 8, if length of string is less than 8
In [83]: ["0"*(8-len(s)) + s if len(s) < desired_len else s for s in list_of_str]
Out[83]: ['00101010', '10101010', '00011110', '00000000']

0

还可以:

 h = 2
 m = 7
 s = 3
 print("%02d:%02d:%02d" % (h, m, s))

因此输出为:“ 02:07:03”


-2

您还可以重复“ 0”,将其添加到str(n)最右端的宽度切片。快速而肮脏的表情。

def pad_left(n, width, pad="0"):
    return ((pad * width) + str(n))[-width:]

1
不过,这仅适用于正数。如果您也想要底片,它将变得更加复杂。但是,如果您不介意这种情况,则此表达式适用于快速而肮脏的工作。
J拉卡尔

我完全不知道为什么这被否决了。如果是原因,那么它不能在负数上正常工作,但绝大多数原因是ID数会用零填充。如果您的身份证号码为负,我想您会遇到更大的问题...您是否希望垫子的格式为“ 00000-1234”?或“ -000001234”?坦率地说,给出了此答案有效的问题,它很简单,很干净而且可以扩展。它可能不是zfill,但如果它回答了问题,则应予以批准。
DeliciousSlowCooker
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.