如何显示小于两位数字的所有数字的前导零?
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 >>>
其他回答
在Python >= 3.6中,您可以使用以下方法引入的新f-string简单地完成此操作:
f'{val:02}'
它输出名为val的变量,填充值为0,宽度为2。
对于你的具体例子,你可以在循环中很好地做到这一点:
a, b, c = 1, 10, 100
for val in [a, b, c]:
print(f'{val:02}')
打印:
01
10
100
有关f-字符串的更多信息,请参阅PEP 498,其中介绍了f-字符串。
python的方法是:
str(number).rjust(string_width, fill_char)
这样,如果原始字符串的长度大于string_width,则原始字符串将原封不动地返回。例子:
a = [1, 10, 100]
for num in a:
print str(num).rjust(2, '0')
结果:
01
10
100
它内置在python中,具有字符串格式
f'{number:02d}'
print('{:02}'.format(1))
print('{:02}'.format(10))
print('{:02}'.format(100))
打印:
01
10
100
你还可以:
'{:0>2}'.format(1)
它将返回一个字符串。