f_num.strip().zfill(2)
>>> n = '4' >>> print(n.zfill(3)) 004
# apply to pandas dataframe column df['column'].apply(lambda x: str(x).zfill(11))