Count Vowels

Create a function that takes a string and returns the number (count) of vowels contained within it.
        
       Input:-hello world
       Input Description: Input: String 
       Output: 3
       Output Description:  Number of vowels. 
       Constraints: 1 <= string length <= 1000
       Explanation: 

Loading...