Question: %%% Python Jupiter Notepad %% Q5 (2 pts) Count the characters in a string - using a dictionary Rewrite your python program from HW2 to
%%% Python Jupiter Notepad %%

Q5 (2 pts) Count the characters in a string - using a dictionary Rewrite your python program from HW2 to prompt the user for a string, and count how many times each vowel (a, e, i, o, u) is repeated in a string. This time use a dictionary to track the counts, and use a loop to print the counts. Sample input: google Sample output: There are 0 instances of a in google There are 1 instances of e in google There are 0 instances of i in google. There are 2 instances of o in google There are 0 instances of u in google
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
