A program needs designing to analyse a set of words that are input into a system. The user needs to enter
100 words. Each word could include capital letters and lowercase letters, but these need to be treated equally.
It then needs to output all of the words that are between 5 and 10 letters long (inclusive) and count all of the words
that start with a vowel (a, e, i, o, u).

Respuesta :

Answer:

for word in words:

 if word[0] inside([a, e, i, or u]) and word.len() >= 5 and word.len() <= 10:

   print(word)

Explanation:

This is a basic for loop problem.

https://pythonnumericalmethods.berkeley.edu/notebooks/chapter05.01-For-Loops.html

https://www.w3schools.com/js/js_loop_for.asp

https://www.cs.utah.edu/~germain/PPS/Topics/for_loops.html