The most pythonic way to pad zeroes to string
Strings:
1 | '4' n = |
rjust/zfill
区别:1
2
3
4
5
6
7
8
9
10
11
12
13
14zfill:
'--txt'.zfill(10)
'-00000-txt'
'++txt'.zfill(10)
'+00000+txt'
'..txt'.zfill(10)
'00000..txt'
rjust:
'--txt'.rjust(10, '0')
'00000--txt'
'++txt'.rjust(10, '0')
'00000++txt'
'..txt'.rjust(10, '0')
'00000..txt'
numbers:
1 | 4 n = |
% formatting 已被 string.format 替代
保留小数位:
1 | format(value, '.6f') |