Fixed error in code

len() was used twice, which produced error. Fixed that.
Also included print() statements, so that the function call actually prints the no. of vovels.
This commit is contained in:
Sarvasv Arora
2019-07-09 21:35:57 +05:30
committed by GitHub
parent 5424f64e2c
commit 63c84b7daa

View File

@ -8,11 +8,11 @@ Use a regular expression to count the number of vowels `(A, E, I, O, U)` in a st
import re
def count_vowels(str):
return len(len(re.findall(r'[aeiou]', str, re.IGNORECASE)))
```
def count_vowels (str):
    return len (re.findall (r '[aeiou]', str, re.IGNORECASE))
`` `
``` python
count_vowels('foobar') # 3
count_vowels('gym') # 0
`` `python
print(count_vowels('foobar')) # 3
print(count_vowels('gym'))# 0
```