Return the numeric string left-filled with zeros in a string of length `width`. See Also -------- char.zfill
(self, width)
| 1181 | return asarray(upper(self)) |
| 1182 | |
| 1183 | def zfill(self, width): |
| 1184 | """ |
| 1185 | Return the numeric string left-filled with zeros in a string of |
| 1186 | length `width`. |
| 1187 | |
| 1188 | See Also |
| 1189 | -------- |
| 1190 | char.zfill |
| 1191 | |
| 1192 | """ |
| 1193 | return asarray(zfill(self, width)) |
| 1194 | |
| 1195 | def isnumeric(self): |
| 1196 | """ |