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