For each element in `self`, return True if there are only numeric characters in the element. See Also -------- char.isnumeric
(self)
| 1193 | return asarray(zfill(self, width)) |
| 1194 | |
| 1195 | def isnumeric(self): |
| 1196 | """ |
| 1197 | For each element in `self`, return True if there are only |
| 1198 | numeric characters in the element. |
| 1199 | |
| 1200 | See Also |
| 1201 | -------- |
| 1202 | char.isnumeric |
| 1203 | |
| 1204 | """ |
| 1205 | return isnumeric(self) |
| 1206 | |
| 1207 | def isdecimal(self): |
| 1208 | """ |
no outgoing calls