text = "hello" print(text.zfill(10)) Output: '00000hello'
function zeros (n) { let count =0 while(n !== 0){ count += Math.floor(n/5) n/=5 } return count } console.log((zeros(5)))
['{0:05d}'.format(s) for s in range(100)]