add leading zeroes to series in python code example
Example 1: how to append leading zeros in python
str.zfill(width)
Example 2: how to add extra zeros after decimal in python
>>> format(2.0, '.6f')
'2.000000'
str.zfill(width)
>>> format(2.0, '.6f')
'2.000000'