InterviewSolution
Saved Bookmarks
| 1. |
Do spacebar counted as a string in python ? |
|
Answer» The built-in string METHOD isspace() returns TRUE value if it encounters a space in the string. ... By USING a counter value initialized to zero, and incrementing it WHENEVER isspace() returns True value, one can easily find the count of the number of spaces in a string.Explanation:Hope it helps youPls Mark as BRAINLIEST |
|