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)
| 2375 | return isalnum(self) |
| 2376 | |
| 2377 | def isalpha(self): |
| 2378 | """ |
| 2379 | Returns true for each element if all characters in the string |
| 2380 | are alphabetic and there is at least one character, false |
| 2381 | otherwise. |
| 2382 | |
| 2383 | See Also |
| 2384 | -------- |
| 2385 | char.isalpha |
| 2386 | |
| 2387 | """ |
| 2388 | return isalpha(self) |
| 2389 | |
| 2390 | def isdigit(self): |
| 2391 | """ |