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)
| 2388 | return isalpha(self) |
| 2389 | |
| 2390 | def isdigit(self): |
| 2391 | """ |
| 2392 | Returns true for each element if all characters in the string are |
| 2393 | digits and there is at least one character, false otherwise. |
| 2394 | |
| 2395 | See Also |
| 2396 | -------- |
| 2397 | char.isdigit |
| 2398 | |
| 2399 | """ |
| 2400 | return isdigit(self) |
| 2401 | |
| 2402 | def islower(self): |
| 2403 | """ |