This question already has answers here:
Display number with leading zeros

(16个答案)


5年前关闭。




我想知道当数字唱歌(例如1-9)时,是否有人可以帮助我在现有字符串中添加前导零。这是字符串:
str(int(length)/1440/60)

最佳答案

您可以像这样使用内置的 str.zfill 方法

my_string = "1"
print my_string.zfill(2)   # Prints 01

my_string = "1000"
print my_string.zfill(2)   # Prints 1000

从文档中



因此,如果实际字符串的长度大于指定的宽度(传递给zfill的参数),则按原样返回字符串。

关于python - 添加领先的零Python ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21620602/

10-09 19:53