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)
| 890 | return isdigit(self) |
| 891 | |
| 892 | def islower(self): |
| 893 | """ |
| 894 | Returns true for each element if all cased characters in the |
| 895 | string are lowercase and there is at least one cased character, |
| 896 | false otherwise. |
| 897 | |
| 898 | See Also |
| 899 | -------- |
| 900 | char.islower |
| 901 | |
| 902 | """ |
| 903 | return islower(self) |
| 904 | |
| 905 | def isspace(self): |
| 906 | """ |
no outgoing calls