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)
| 878 | return isalpha(self) |
| 879 | |
| 880 | def isdigit(self): |
| 881 | """ |
| 882 | Returns true for each element if all characters in the string are |
| 883 | digits and there is at least one character, false otherwise. |
| 884 | |
| 885 | See Also |
| 886 | -------- |
| 887 | char.isdigit |
| 888 | |
| 889 | """ |
| 890 | return isdigit(self) |
| 891 | |
| 892 | def islower(self): |
| 893 | """ |
no outgoing calls