如何显示小于两位数字的所有数字的前导零?
1 → 01
10 → 10
100 → 100
如何显示小于两位数字的所有数字的前导零?
1 → 01
10 → 10
100 → 100
当前回答
它内置在python中,具有字符串格式
f'{number:02d}'
其他回答
所有这些都创建了字符串“01”:
>python -m timeit "'{:02d}'.format(1)"
1000000 loops, best of 5: 357 nsec per loop
>python -m timeit "'{0:0{1}d}'.format(1,2)"
500000 loops, best of 5: 607 nsec per loop
>python -m timeit "f'{1:02d}'"
1000000 loops, best of 5: 281 nsec per loop
>python -m timeit "f'{1:0{2}d}'"
500000 loops, best of 5: 423 nsec per loop
>python -m timeit "str(1).zfill(2)"
1000000 loops, best of 5: 271 nsec per loop
>python
Python 3.8.1 (tags/v3.8.1:1b293b6, Dec 18 2019, 23:11:46) [MSC v.1916 64 bit (AMD64)] on win32
这将是Python的方式,尽管为了清晰起见我会包括参数- "{0:0>2}".format(number),如果有人想要nLeadingZeros,他们应该注意他们也可以这样做:"{0:0>{1}}"。format(number, nLeadingZeros + 1)
在Python 2.6+和3.0+中,你可以使用format()字符串方法:
for i in (1, 10, 100):
print('{num:02d}'.format(num=i))
或者使用内置的(单个数字):
print(format(i, '02d'))
有关新的格式化函数,请参阅PEP-3101文档。
使用格式字符串- http://docs.python.org/lib/typesseq-strings.html
例如:
python -c 'print "%(num)02d" % {"num":5}'
width = 5
num = 3
formatted = (width - len(str(num))) * "0" + str(num)
print formatted