python如何填充0到数字字符串中保证统一长度【面试题详解】

今天爱分享给大家带来python如何填充0到数字字符串中保证统一长度【面试题详解】,希望能够帮助到大家。

对于字符串


>>> n = '4'
>>> print n.zfill(3)
>>> '004'


对于数字


>>> n = 4
>>> print '%03d' % n
>>> 004
>>> print "{0:03d}".format(4)  # python >= 2.6
>>> 004
>>> print("{0:03d}".format(4))  # python 3
>>> 004


人已赞赏
Python

python如何截取一个字符串获得子串【面试题详解】

2020-12-22 18:03:35

Python

python如何将字符串转换为datetime【面试题详解】

2020-12-22 21:48:14

'); })();