How do I find word(s) in string that has the lowest vowel proportion? For example the word 'love' is 2/4 = 0.5.
Example :
The result will be
The result will be:
Example :
Code:
text = "music and rythm"
Code:
["rythm"]
Code:
text = "least great and good"
Code:
["least","great"]
Comment