将整数格式化为带前导零的字符串的最佳方法?

问题描述:

我需要将前导零添加到整数以生成具有定义数量的数字 ($cnt) 的字符串.将这个简单的函数从 PHP 转换为 Python 的最佳方法是什么:

I need to add leading zeros to integer to make a string with defined quantity of digits ($cnt). What the best way to translate this simple function from PHP to Python:

function add_nulls($int, $cnt=2) {
    $int = intval($int);
    for($i=0; $i<($cnt-strlen($int)); $i++)
        $nulls .= '0';
    return $nulls.$int;
}

有没有可以做到这一点的函数?

Is there a function that can do this?

您可以使用 zfill() 方法用零填充字符串:

You can use the zfill() method to pad a string with zeros:

In [3]: str(1).zfill(2)
Out[3]: '01'