Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started