For each element in `self`, return True if there are only numeric characters in the element. See Also -------- char.isnumeric
(self)
| 2703 | return asarray(zfill(self, width)) |
| 2704 | |
| 2705 | def isnumeric(self): |
| 2706 | """ |
| 2707 | For each element in `self`, return True if there are only |
| 2708 | numeric characters in the element. |
| 2709 | |
| 2710 | See Also |
| 2711 | -------- |
| 2712 | char.isnumeric |
| 2713 | |
| 2714 | """ |
| 2715 | return isnumeric(self) |
| 2716 | |
| 2717 | def isdecimal(self): |
| 2718 | """ |