Returns true for each element if the element is a titlecased string and there is at least one character, false otherwise. See Also -------- char.istitle
(self)
| 2426 | return isspace(self) |
| 2427 | |
| 2428 | def istitle(self): |
| 2429 | """ |
| 2430 | Returns true for each element if the element is a titlecased |
| 2431 | string and there is at least one character, false otherwise. |
| 2432 | |
| 2433 | See Also |
| 2434 | -------- |
| 2435 | char.istitle |
| 2436 | |
| 2437 | """ |
| 2438 | return istitle(self) |
| 2439 | |
| 2440 | def isupper(self): |
| 2441 | """ |