Home | History | Annotate | Download | only in whatsnew

Lines Matching full:zfill

1162 * Another new string method is :meth:`zfill`, originally a function in the
1163 :mod:`string` module. :meth:`zfill` pads a numeric string with zeros on the
1165 flexible and powerful than :meth:`zfill`. ::
1167 >>> '45'.zfill(4)
1169 >>> '12345'.zfill(4)
1171 >>> 'goofy'.zfill(6)