Returns true for each element if all cased characters in the string are lowercase and there is at least one cased character, false otherwise. See Also -------- char.islower
(self)
| 2400 | return isdigit(self) |
| 2401 | |
| 2402 | def islower(self): |
| 2403 | """ |
| 2404 | Returns true for each element if all cased characters in the |
| 2405 | string are lowercase and there is at least one cased character, |
| 2406 | false otherwise. |
| 2407 | |
| 2408 | See Also |
| 2409 | -------- |
| 2410 | char.islower |
| 2411 | |
| 2412 | """ |
| 2413 | return islower(self) |
| 2414 | |
| 2415 | def isspace(self): |
| 2416 | """ |