Returns true for each element if there are only whitespace characters in the string and there is at least one character, false otherwise. See Also -------- char.isspace
(self)
| 903 | return islower(self) |
| 904 | |
| 905 | def isspace(self): |
| 906 | """ |
| 907 | Returns true for each element if there are only whitespace |
| 908 | characters in the string and there is at least one character, |
| 909 | false otherwise. |
| 910 | |
| 911 | See Also |
| 912 | -------- |
| 913 | char.isspace |
| 914 | |
| 915 | """ |
| 916 | return isspace(self) |
| 917 | |
| 918 | def istitle(self): |
| 919 | """ |
no outgoing calls