Build a Travel Weather Planner - List Number 20?!

Tell us what’s happening:

All of the list is correct EXCEPT list number 20. I still didn’t know how to solve this. Anyone? Help?

Your code so far

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

if distance_mi:
    if distance_mi <= 1 and not is_raining:
        print("True") 
    elif 1 < 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") 
else:
    print("False") 

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

Welcome to the forum @Adfeer!

Please review User Story #6 again. What does your code return if distance_mi is 6?

Happy coding!