Question: Write a program that prompts me to enter a string. (I will use something like The quick brown fox jumps over the lazy dog). Nobody
Write a program that prompts me to enter a string. (I will use something like "The quick brown fox jumps over the lazy dog"). Nobody really enjoys string manipulation, and if you search for ways to do this, you will find all kinds of shortcuts. I'm asking that you not do that right now, because in every single job I've had, sooner or later I had to do some ugly string processing that had no shortcuts. It's good to know.
Use only the following functions and methods: input, output, conditionals, and looping you have previously learned, plus the len function and the upper, lower, find, and slice methods.
Take that string and print it out, using upper case for all vowels, and lower case for everything else ("thE qUIck brOwn...")
Print out each word and its length. DO NOT USE SPLIT.
ps: Use python
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
