如何显示小于两位数字的所有数字的前导零?
1 → 01
10 → 10
100 → 100
如何显示小于两位数字的所有数字的前导零?
1 → 01
10 → 10
100 → 100
当前回答
我是这样做的:
str(1).zfill(len(str(total)))
基本上zfill取你想加的前导零的个数,所以很容易取最大的数字,把它转换成字符串并得到长度,像这样:
Python 3.6.5 (default, May 11 2018, 04:00:52) [GCC 8.1.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> total = 100 >>> print(str(1).zfill(len(str(total)))) 001 >>> total = 1000 >>> print(str(1).zfill(len(str(total)))) 0001 >>> total = 10000 >>> print(str(1).zfill(len(str(total)))) 00001 >>>
其他回答
你可以用f个字符串。
import numpy as np
print(f'{np.random.choice([1, 124, 13566]):0>8}')
这将打印常量长度8,并以前导0填充其余部分。
00000001
00000124
00013566
在Python 2(和Python 3)中,您可以执行:
number = 1
print("%02d" % (number,))
基本上%类似于printf或sprintf(参见文档)。
对于Python 3。+,同样的行为也可以通过format实现:
number = 1
print("{:02d}".format(number))
对于Python 3.6+,同样的行为可以通过f-strings实现:
number = 1
print(f"{number:02d}")
print('{:02}'.format(1))
print('{:02}'.format(10))
print('{:02}'.format(100))
打印:
01
10
100
使用格式字符串- http://docs.python.org/lib/typesseq-strings.html
例如:
python -c 'print "%(num)02d" % {"num":5}'
如果处理的数字是一位数或两位数:
‘0’+ str (number)黑帽子-2:铝还是‘0那0’.format (number)黑-2:铝