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)
| 2362 | return index(self, sub, start, end) |
| 2363 | |
| 2364 | def isalnum(self): |
| 2365 | """ |
| 2366 | Returns true for each element if all characters in the string |
| 2367 | are alphanumeric and there is at least one character, false |
| 2368 | otherwise. |
| 2369 | |
| 2370 | See Also |
| 2371 | -------- |
| 2372 | char.isalnum |
| 2373 | |
| 2374 | """ |
| 2375 | return isalnum(self) |
| 2376 | |
| 2377 | def isalpha(self): |
| 2378 | """ |