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