标签:python 方法 pytho assert fill span blog 数字 code
python中有一个zfill方法用来给字符串前面补0,非常有用
1 n = "123" 2 s = n.zfill(5) 3 assert s == "00123"
zfill()也可以给负数补0
1 n = "-123" 2 s = n.zfill(5) 3 assert s == "-0123"
对于纯数字,我们也可以通过格式化的方式来补0
n = 123 s = "%05d" % n assert s == "00123"
标签:python 方法 pytho assert fill span blog 数字 code
原文地址:http://www.cnblogs.com/cymwill/p/6500831.html