I need help removing the excess space described in the image below for the python code : 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 removing the excess space described in the image below for the python code

:

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

1:Primary (90) A
Input
3:Invalid (0)
Your output
2:Auxiliary (290) ►
Input
Your output I-290 is auxiliary, serving I-90, going east/west.
90
4:Compare output A
I-90 is primary, going east/west.
Input 0
Your output 0 is not a valid interstate highway number.
290
Your output
Output is nearly correct, but whitespace differs. See highlights below. Special character legend
Expected output
Input 200
200 is not a valid interstate highway number.
200 is not a valid interstate highway number.
Transcribed Image Text:1:Primary (90) A Input 3:Invalid (0) Your output 2:Auxiliary (290) ► Input Your output I-290 is auxiliary, serving I-90, going east/west. 90 4:Compare output A I-90 is primary, going east/west. Input 0 Your output 0 is not a valid interstate highway number. 290 Your output Output is nearly correct, but whitespace differs. See highlights below. Special character legend Expected output Input 200 200 is not a valid interstate highway number. 200 is not a valid interstate highway number.
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Function Arguments
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