Returns true for each element if all cased characters in the string are uppercase and there is at least one character, false otherwise. See Also -------- char.isupper
(self)
| 928 | return istitle(self) |
| 929 | |
| 930 | def isupper(self): |
| 931 | """ |
| 932 | Returns true for each element if all cased characters in the |
| 933 | string are uppercase and there is at least one character, false |
| 934 | otherwise. |
| 935 | |
| 936 | See Also |
| 937 | -------- |
| 938 | char.isupper |
| 939 | |
| 940 | """ |
| 941 | return isupper(self) |
| 942 | |
| 943 | def join(self, seq): |
| 944 | """ |
no outgoing calls