Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions Icon

Related questions

Question

I need help fixing a python code so that it can output the displayed image below

highway_number = int(input())

if (highway_number == 0) or (highway_number % 100 == 0) or (highway_number > 999):
    print('{} is not a valid interstate highway number.'.format(highway_number)) 

if highway_number > 0 and highway_number < 100:
    if (highway_number % 2) == 0:
        print('I-{} is primary, going east/west.'.format(highway_number))
    else:
        print('I-{} is primary, going north/south.'.format(highway_number))
if highway_number > 99 and highway_number < 1000:
    if highway_number % 100 == 0:
        print()
    else:
        if (highway_number % 2) == 0:
            if_aux = highway_number % 100
            print('I-{} is auxiliary, serving I-{}, going east/west.'.format(highway_number, if_aux))
        else:
            if_aux = highway_number % 100
            print('I-{} is auxiliary, serving I-{}, going north/south.'.format(highway_number, if_aux))

Output is nearly correct, but whitespace differs. See highlights below. Special character legend
Your output
Input 200
Expected output
5:Compare output
6:Compare output A
7:Compare output
Input 5
Your output I-5 is primary, going north/south.
200 is not a valid interstate highway number.
Input
Your output
200 is not a valid interstate highway number.
405
I-405 is auxiliary, serving I-5, going north/south.
1000
Input
Your output 1000 is not a valid interstate highway number.
expand button
Transcribed Image Text:Output is nearly correct, but whitespace differs. See highlights below. Special character legend Your output Input 200 Expected output 5:Compare output 6:Compare output A 7:Compare output Input 5 Your output I-5 is primary, going north/south. 200 is not a valid interstate highway number. Input Your output 200 is not a valid interstate highway number. 405 I-405 is auxiliary, serving I-5, going north/south. 1000 Input Your output 1000 is not a valid interstate highway number.
Expert Solution
Check Mark
Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education