subject

In this homework you will print details about a US Interstate Highway given that highway's number Interstate Highways
US Interstate Highways (the ones with blue shield icons, like this) are given very deliberate numbers that reflect their physical characteristics. Knowing an interstate's number can tell you a lot about it: whether it's a large or small highway, what direction it runs, and more! Some simple math will derive facts about an interstate given its number:
1. Interstates are either primary or auxiliary routes. A primary route has a one or two-digit number, whereas an auxiliary route has a three-digit number
2. Primary routes have: o an orientation, an odd route number indicates a north-south orientation, and an even number indicates an east-west orientation. Example: Interstate 5 runs north-south, Interstate 10 runs east- west. o a size a route number that is a multiple of 5 is a long-distance arterial highway. Example: Interstates 5, 10, 15, etc. are long- distance arterial highways, but not 8, 11, 14, etc.
3. Auxiliary routes have: . a type: if the first digit of the route number is odd, the auxiliary highway is a spur highway. If the first digit of the route number is even, the highway is a loop highway. Example: 110 is a spur highway. 405 is a loop highway. . a parent every auxiliary highway has a "parent" primary highway that it connects to. The parent highway number is the last two digits of the auxiliary number. Example: the parent of 605 is 5; the parent of 710 is 10.
Easy!
Assignment
Write a Python program to:
1. Ask the user to input an integer highway number. You may assume the user always enters a single integer value; for example, if the user is interested in Interstate 405, they will enter 405. You must validate the value of this input: ensure that the value is between 0 and 999 inclusive, and continually loop and ask the user for a highway number until they enter one that matches this requirement. Do not proceed with the rest of the program until you are sure the user gave a number between 0 and 999.
2. Determine (but don't print... yet) whether the highway is primary or auxiliary.
3. Print a summary of the highway's information (SEE EXAMPLE OUTPUT):
1. For primary highways, include whether the highway is a long-distance arterial, then give its orientation.
2. For auxiliary highways, include the auxiliary type and its parent highway number.
4. Repeat steps 1-3 until the user gives a highway number of O. Do not print any information about this highway, a value of 0 triggers the end of the program
Example output
User input is in italics:
Please enter a US Interstate Highway route number: -1
Please enter a US Interstate Highway route number: 5 Interstate 5 is a long-distance arterial highway oriented north-south.
Please enter a US Interstate Highway route number: 1000
Please enter a US Interstate Highway route number: 405 Interstate 405 is a loop highway of Interstate 5.
Please enter a US Interstate Highway route number: 94 Interstate 94 is oriented east-west.
Please enter a US Interstate Highway route number: 0

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 24.06.2019 03:30
Auniform resource locator (url) is a formatted string of text that web browsers, email applications, and other software programs use to identify a particular resource on the internet. true false
Answers: 2
question
Computers and Technology, 24.06.2019 04:30
What is the process in which the software development team compiles information to determine the final product
Answers: 1
question
Computers and Technology, 24.06.2019 13:00
Which best describes the condition under which the unicode output is the same as plain text ?
Answers: 1
question
Computers and Technology, 24.06.2019 18:30
What is the local portion of the e-mail address below? [email protected] a.) @ b.) biz c.) gumchewer d.) twrigley
Answers: 1
You know the right answer?
In this homework you will print details about a US Interstate Highway given that highway's number I...
Questions
question
Mathematics, 05.05.2020 17:40
question
Mathematics, 05.05.2020 17:40
question
Mathematics, 05.05.2020 17:40
question
Mathematics, 05.05.2020 17:40
question
Arts, 05.05.2020 17:40
Questions on the website: 13722361