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)
| 2413 | return islower(self) |
| 2414 | |
| 2415 | def isspace(self): |
| 2416 | """ |
| 2417 | Returns true for each element if there are only whitespace |
| 2418 | characters in the string and there is at least one character, |
| 2419 | false otherwise. |
| 2420 | |
| 2421 | See Also |
| 2422 | -------- |
| 2423 | char.isspace |
| 2424 | |
| 2425 | """ |
| 2426 | return isspace(self) |
| 2427 | |
| 2428 | def istitle(self): |
| 2429 | """ |