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)
| 916 | return isspace(self) |
| 917 | |
| 918 | def istitle(self): |
| 919 | """ |
| 920 | Returns true for each element if the element is a titlecased |
| 921 | string and there is at least one character, false otherwise. |
| 922 | |
| 923 | See Also |
| 924 | -------- |
| 925 | char.istitle |
| 926 | |
| 927 | """ |
| 928 | return istitle(self) |
| 929 | |
| 930 | def isupper(self): |
| 931 | """ |
no outgoing calls