Question: PLEASE HELP!!!!! In this assignment, you will write a Python program that asks the user for six numbers. You will then ask the user to
PLEASE HELP!!!!!


In this assignment, you will write a Python program that asks the user for six numbers. You will then ask the user to enter a lower bound and an upper bound, and will print the count of how many of the entered numbers are between those bounds. Then you will ask the user for a different lower and upper bound and will print the count of how many numbers are between those new bounds Here is a sample run of the program (note that user input is in black, and printing from the program is in blue) Python 3.65 Shell File Edit Shell Debug Options Window Help Python 3.6.5 (v3.6.5:f59c0932b4, Mar 28 2018, 17:00:18) [MSC v.1900 64 bit (AMD6 4)] on win32 Type "copyright", "credits" or "license)" for more information Enter a number: Enter a number: 9 Enter a number: 2 Enter a number: 10 Enter a number: 50 Enter a number: 43 5 Enter the first lower bound: 9 Enter the first upper bound: 20 There are 2 numbers between 9 and 20 Enter the second lower bound: 10 Enter the second upper bound: 60 There are 3 numbers between 10 and 60 Ln: 21 Col: 4 The user entered two numbers between 9 and 20 (9 and 10), and entered three numbers between 10 and 60 (10, 43, 50)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
