Write the function count_space_run
that take a string string
and returns the number of times string
contains more than 1 white-space.
count_space_run('we all agreed; it was a magnificent evening.') -> 0
count_space_run('we all agreed it was a magnificent evening.') -> 2