list= ["aeouis...,.,,esw","trees..,,ioee", '".....wwqqow..","...,...,,,","uouiyteerff..,,", ",w," ]
I need to create a second list as an output. the output for each element will the unique vowels that are present in that element and either High: for 75% or more vowels in the strin, medium: 40-75% of vowels in the element , low: if less that 40% of vowels in the element or
No vowels: if there are no vowels in the string.
and Null: if the string length is less than 5.
So the output will be like:[[a,e,o,u,i]low
, [e,i,o]medium
, No Vowels, No Vowels, [u,o,i,e]low, NULL]
Can we do this using a list Comprehension ??