python学习——字符串补全填充固定长度(补0)的三种方法

python学习——字符串补全填充固定长度(补0)的三种方法

text justification
‘’’
原字符串左侧对齐, 右侧补零:
‘’’
str.ljust(width,‘0’)
input: ‘789’.ljust(32,‘0’)
output: ‘78900000000000000000000000000000’

‘’’
原字符串右侧对齐, 左侧补零:
方法一:
‘’’
str.rjust(width,‘0’)
input: ‘798’.rjust(32,‘0’)
output: ‘00000000000000000000000000000798’
‘’’
方法二:
‘’’
str.zfill(width)
input: ‘123’.zfill(32)
output:‘00000000000000000000000000000123’
‘’’
方法三:
‘’’
‘%07d’ % n
input: ‘%032d’ % 89
output:‘00000000000000000000000000000089’
————————————————
版权声明:本文为CSDN博主「量化橙同学」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/m0_37876745/article/details/122532252

您可能还喜欢...

发表回复