Question: Using Python Write individual while loops to meet the following criteria. Print text before each loop, such as Part 1 or Part 2, with a
Using Python

Write individual while loops to meet the following criteria. Print text before each loop, such as "Part 1" or "Part 2", with a little whitespace between each part to break up the output. aa Count from 10 to 50 (inclusive) by 1 - output one value per line Count from 20 to 0 (inclusive, counting down) - all output must be on a single line Count by 2 from 0 to 10 (inclusive) - output one value per line Ask for a single letter. Echo the input back to the screen, inside apostrophes. Continue to ask for a single letter until the user enters the letter 'q' or 'Q' (for 'quit', and do not echo the q back to the screen and do not count as an input). Then tell how many upper- case and lower-case letters were entered. Remember that you can compare letters, and that 'b' is greater than 'a' and that 'b' is less than 'c'. For example: Enter a letter: a You entered 'a' Enter a letter: B You entered 'B' Enter a letter: 9 The user entered 1 upper case letter The user entered 1 lower case letter
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
