Python: String: Count Space Run

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

Test 1    

Test 2    

Test 3    

Test 4    

Test 5    

Test 6