Question: [25 points) Programming Question Write a python program that does the following: 1. Read the number of strings, n, from the user. Assume that the

[25 points) Programming Question Write a python program that does the following: 1. Read the number of strings, n, from the user. Assume that the user enters a positive integer. 2. Asks the user to enter n strings and save them into a list. 3. Display the list of strings. 4. Use loops to determine and display the total number of vowels in all strings. Note that the set of vowels in English consists of {a, A, e, E,1,1,0,0,u, U}. Below is a sample output that gives an idea of how your program should work: Enter the number of strings: 3 Enter string: Table Enter string: Chair Enter string: Eagle The input list is ['Table', 'Chair', 'Eagle'] The total number of vowels = 7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
