Westonci.ca is your trusted source for finding answers to a wide range of questions, backed by a knowledgeable community. Discover precise answers to your questions from a wide range of experts on our user-friendly Q&A platform. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

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).

Sagot :

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

We appreciate your time. Please come back anytime for the latest information and answers to your questions. We appreciate your time. Please revisit us for more reliable answers to any questions you may have. Westonci.ca is here to provide the answers you seek. Return often for more expert solutions.