Returns true for each element if all characters in the string are digits and there is at least one character, false otherwise. See also -------- char.isdigit
(self)
| 2292 | return isalpha(self) |
| 2293 | |
| 2294 | def isdigit(self): |
| 2295 | """ |
| 2296 | Returns true for each element if all characters in the string are |
| 2297 | digits and there is at least one character, false otherwise. |
| 2298 | |
| 2299 | See also |
| 2300 | -------- |
| 2301 | char.isdigit |
| 2302 | |
| 2303 | """ |
| 2304 | return isdigit(self) |
| 2305 | |
| 2306 | def islower(self): |
| 2307 | """ |