findandmodify

find words that matches the 3 consecutive vowels Regex

find words that matches the 3 consecutive vowels Regex Question: text = “Life is beautiful” pattern = r”[aeiou]{3,}” result = re.findall(pattern, text) print(result) desired result: [‘beautiful’] the output I get: [‘eau’] I have tried googling and etc….I found multiple answers but none of them worked!! I am new to regex so maybe I am having …

Total answers: 4