Return the numeric string left-filled with zeros in a string of length `width`. See Also -------- char.zfill
(self, width)
| 2691 | return asarray(upper(self)) |
| 2692 | |
| 2693 | def zfill(self, width): |
| 2694 | """ |
| 2695 | Return the numeric string left-filled with zeros in a string of |
| 2696 | length `width`. |
| 2697 | |
| 2698 | See Also |
| 2699 | -------- |
| 2700 | char.zfill |
| 2701 | |
| 2702 | """ |
| 2703 | return asarray(zfill(self, width)) |
| 2704 | |
| 2705 | def isnumeric(self): |
| 2706 | """ |
no test coverage detected