Returns true for each element if all characters in the string are alphanumeric and there is at least one character, false otherwise. See Also -------- char.isalnum
(self)
| 852 | return index(self, sub, start, end) |
| 853 | |
| 854 | def isalnum(self): |
| 855 | """ |
| 856 | Returns true for each element if all characters in the string |
| 857 | are alphanumeric and there is at least one character, false |
| 858 | otherwise. |
| 859 | |
| 860 | See Also |
| 861 | -------- |
| 862 | char.isalnum |
| 863 | |
| 864 | """ |
| 865 | return isalnum(self) |
| 866 | |
| 867 | def isalpha(self): |
| 868 | """ |
no outgoing calls