Build a Travel Weather Planner - Build a Travel Weather Planner

Tell us what’s happening:

I am getting x on check 22 but my code is showing the correct answer. Not sure where I am going wrong.

Your code so far

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

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

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

Is this the way we check if a number falls within a range? If distance_mi is 10, this condition evaluates to true.

OMG…Thanks so much for all you help in guiding me the issue!