假设:
a = 1
b = 10
c = 100
如何为少于两位数的所有数字显示前导零?
即,
01
10
100
答案 0 :(得分:803)
答案 1 :(得分:791)
在Python 2中,你可以这样做:
print "%02d" % (1,)
基本上%与printf
或sprintf
类似。
对于Python 3. +可以通过以下方式实现相同的行为:
print("{:02d}".format(1))
对于Python 3.6+,使用f-strings可以实现相同的行为:
print(f"{1:02d}")
答案 2 :(得分:350)
在Python 2.6+和3.0+中,您将使用format()
字符串方法:
for i in (1, 10, 100):
print('{num:02d}'.format(num=i))
或使用内置(对于单个数字):
print(format(i, '02d'))
有关新的格式化功能,请参阅PEP-3101文档。
答案 3 :(得分:119)
print('{:02}'.format(1))
print('{:02}'.format(10))
print('{:02}'.format(100))
打印:
01
10
100
答案 4 :(得分:88)
或者这个:
print '{0:02d}'.format(1)
答案 5 :(得分:56)
在 Python> = 3.6 中,您可以使用以下引入的新f字符串简洁地执行此操作:
f'{val:02}'
打印名称为val
且0
值为2
且fill
为a, b, c = 1, 10, 100
for val in [a, b, c]:
print(f'{val:02}')
的变量。
对于您的具体示例,您可以在循环中很好地完成此任务:
01
10
100
打印:
{{1}}
有关f字符串的更多信息,请查看介绍它们的width
。
答案 6 :(得分:51)
x = [1, 10, 100]
for i in x:
print '%02d' % i
结果:
01
10
100
答案 7 :(得分:43)
Pythonic的方法:
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
答案 8 :(得分:32)
或另一种解决方案。
"{:0>2}".format(number)
答案 9 :(得分:5)
使用格式字符串 - http://docs.python.org/lib/typesseq-strings.html
例如:
python -c 'print "%(num)02d" % {"num":5}'
答案 10 :(得分:2)
width = 5
num = 3
formatted = (width - len(str(num))) * "0" + str(num)
print formatted
答案 11 :(得分:2)
您可以使用 f个字符串来做到这一点。
import numpy as np
print(f'{np.random.choice([1, 124, 13566]):0>8}')
这将打印恒定长度的8,并用前导0
填充其余部分。
00000001
00000124
00013566
答案 12 :(得分:1)
使用:
11111111|null
22222222|null
33333333|Map(largeImage_1 -> [111,222,loading test data])
或使用'00'[len(str(i)):] + str(i)
模块:
math
答案 13 :(得分:1)
这是我的方法:
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 >>>
答案 14 :(得分:0)
s=1
s="%02d"%s
print(s)
结果将为01
答案 15 :(得分:0)
!/ usr / bin / env python3
版权2009-2017 BHG http://bw.org/
x = 5
while (x <= 15):
a = str("{:04}".format(x))
print(a)
x = x + 1;
答案 16 :(得分:0)
df ['Col1'] = df ['Col1']。apply(lambda x:'{0:0> 5}'。format(x)) (5是总位数)
我使用了此链接: http://www.datasciencemadesimple.com/add-leading-preceding-zeros-python/
答案 17 :(得分:0)
所有这些都创建了字符串“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
答案 18 :(得分:-1)
如果处理一位或两位数的数字:
'0'+str(number)[-2:]
或'0{0}'.format(number)[-2:]