Build a Travel Weather Planner Trouble

Tell us what’s happening:

When I test my code myself, conditions 18 (When the distance is between 1 mile (excluded) and 6 miles (included), and it is raining with no bike, the program should print False. ) and 19 (When the distance is between 1 mile (excluded) and 6 miles (included), it is not raining but no bike is available, the program should print False.) are met. However, when I press “Check Your Code”, it says that they are not met. Where is the error in my code prevents these conditions from being met?

Your code so far

distance_mi = 3
is_raining = False
has_bike = False
has_car = False
has_ride_share_app = False

if distance_mi == False:
    print(False)
elif distance_mi <= 1 and is_raining == False:
    print(True)
elif has_bike == True and (distance_mi >1 and distance_mi <= 6) and is_raining == False:
    print(True)
elif has_car == True or has_ride_share_app == True:
    print(True)
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/146.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

Welcome to the forum @matthewjstolze ,

Try explicitly including distance_mi in your final elif.

Happy coding!

Thank you so much! I’ve seen you reply to a lot of posts on this forum, it makes me glad to know that there is help when I need it.