Build a Travel Weather Planner - Build a Travel Weather Planner

Tell us what’s happening:

I cant pass step 16 and im not sure why even though i checked alot of times in the forum or anywhere else

Your code so far

distance_mi = 1
is_raining = False
has_bike = True
has_car = True
has_ride_share_app = True

if not isinstance(distance_mi, int) or distance_mi <= 0:
    print('False')

elif distance_mi <= 1:
    if is_raining != True:
        print('True')
    else:
        print('False')

elif distance_mi > 1 and distance_mi <=6 and not is_raining and not has_bike:
    print('False')

elif distance_mi > 1 and distance_mi <= 6 and not is_raining and has_bike:
    print('True')

elif distance_mi > 6 and has_car:
    print('True')

elif distance_mi > 6 and has_ride_share_app:
    print('True')

elif distance_mi > 6 and not has_car and not has_ride_share_app:
    print('False')

else:
    print('False')

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

Welcome to the forum @XSilent!

What does your code return if distance_mi is 0.5?

Happy coding!

it says False when i put 0.5

and is that what should happen?

no.. but i finally found out whats the problem and passed, soo thank you for helping! i will try not to make these mistakes again

hey there i need somehelp

You can create a new foroum post . If you haven’t done that you are asking for help on a different post.

The code is actually working correctly for these values. Let’s trace through it:

distance_mi = 1 is a valid integer, so the first condition is False, skip.

distance_mi <= 1 evaluates to 1 <= 1 which is True, so Python enters this block and checks is_raining != True which evaluates to False != True which is True, so it prints True and stops.

Python stops there not because of a bug, but because the condition matched and was handled correctly. Try changing your values to test the other branches, for example set distance_mi = 5 or is_raining = True and trace through again.

thank you let me look at it