Returns true for each element if all characters in the string are alphabetic and there is at least one character, false otherwise. See Also -------- char.isalpha
(self)
| 865 | return isalnum(self) |
| 866 | |
| 867 | def isalpha(self): |
| 868 | """ |
| 869 | Returns true for each element if all characters in the string |
| 870 | are alphabetic and there is at least one character, false |
| 871 | otherwise. |
| 872 | |
| 873 | See Also |
| 874 | -------- |
| 875 | char.isalpha |
| 876 | |
| 877 | """ |
| 878 | return isalpha(self) |
| 879 | |
| 880 | def isdigit(self): |
| 881 | """ |
no outgoing calls