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))

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
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.
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
steps

Step by step

Solved in 4 steps with 3 images

Blurred answer
Knowledge Booster
Random Class and its operations
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
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education