The fоllоwing cоunt_vowels() function аttempts to count the number of vowels in а given string. For exаmple: test_string = "Hello World" print(count_vowels(test_string)) # Should print 3 Identify and correct the errors in the following code snippet: def count_vowels(string): vowels = 'aeiouAEIOU' if len(string) == 0 return 5 if string[0] in vowels return 1 + count_vowels(string[0:]) return count_vowels(string)