码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-07-17 21:10:42      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:.com   bar   www.   item   key   nbsp   字符   line   assert   

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

= "123"
= n.zfill(5)
assert == "00123"

zfill()也可以给负数补0

= "-123"
= n.zfill(5)
assert == "-0123"

对于纯数字,我们也可以通过格式化的方式来补0

= 123
= "%05d" % n
assert == "00123"

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

标签:.com   bar   www.   item   key   nbsp   字符   line   assert   

原文地址:https://www.cnblogs.com/rockniu2/p/9325778.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!