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)
| 2438 | return istitle(self) |
| 2439 | |
| 2440 | def isupper(self): |
| 2441 | """ |
| 2442 | Returns true for each element if all cased characters in the |
| 2443 | string are uppercase and there is at least one character, false |
| 2444 | otherwise. |
| 2445 | |
| 2446 | See Also |
| 2447 | -------- |
| 2448 | char.isupper |
| 2449 | |
| 2450 | """ |
| 2451 | return isupper(self) |
| 2452 | |
| 2453 | def join(self, seq): |
| 2454 | """ |