i am getting whitespace error on output : I-290 is auxiliary, serving I- 90 going east/west.   it should read : I-290 is auxiliary, serving I-90, going east/west.   I can't figure out where the space is coming from after I-  90.

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Array Concepts
Section: Chapter Questions
Problem 10PE
icon
Related questions
Question

Zybook Lab 

 

highway_number = int(input())
if(highway_number>=1 and highway_number<=99):
    if(highway_number%2==0):
        print("I-"+str(highway_number),"is primary, going east/west.")
    else:
        print("I-"+str(highway_number),"is primary, going north/south.")
        
elif(highway_number>=100 and highway_number<=999):
    highway_number_string = str(highway_number)
    length = len(highway_number_string)
    rightmost_digits = int(highway_number_string[length-2:length])
    if(rightmost_digits==0):
        print(highway_number,"is not a valid interstate highway number.")
    elif(rightmost_digits%2==0):
        print("I-"+str(highway_number),"is auxiliary, serving I-",rightmost_digits,"going east/west.")
    else:
        print("I-"+str(highway_number),"is auxiliary, serving I-",rightmost_digits,"going north/south.")
else:
    print(highway_number,"is not a valid interstate highway number.")

 

i am getting whitespace error on output :

I-290 is auxiliary, serving I- 90 going east/west.
 

it should read :

I-290 is auxiliary, serving I-90, going east/west.
 
I can't figure out where the space is coming from after I-  90.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Basics of loop
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
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781305480537
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning