Answers for "count number of spaces in string python"

1

count number of spaces in string python

>>> a = "My test string"
>>> a.count(' ')
2
Posted by: Guest on June-18-2020
0

number of spaes pythopn

# '.isspace() ' return True of False for if a character is a space

word = "How many spaces"
num = 0
for i in word:
  if(i.isspace() == True):
    num += 1
print(num) #Output: '2'
Posted by: Guest on May-26-2020

Code answers related to "count number of spaces in string python"

Python Answers by Framework

Browse Popular Code Answers by Language