Python: String: Remove Vowel

Write the function remove_vowel that take a string and returns another string where the vowels are removed. Any extra white-spaces as a result of vowel removal should be also removed.


remove_vowel('In three words I can sum up everything') -> 'n thr wrds cn sm p vrythng'

Test 1    

Test 2    

Test 3    

Test 4    

Test 5    

Test 6