python自动给数字前面补0的方法

2023-01-31 03:01:11 python 方法 数字

转载:Http://www.sharejs.com/codes/python/8037

-Python中有一个zfill方法用来给字符串前面补0,非常有用

Python
python中有一个zfill方法用来给字符串前面补0,非常有用
= "123"
= n.zfill(5)
assert == "00123"
zfill()也可以给负数补0
= "-123"
= n.zfill(5)
assert == "-0123"
对于纯数字,我们也可以通过格式化的方式来补0
= 123
= "%05d" % n
assert == "00123"


相关文章