Build a Travel Weather Planner - Build a Travel Weather Planner

Need Help

it says “When the distance is greater than 6 miles and a ride share app is available, the program should print True.” but I put “has_car” and has_ride_share_app" is there any problem that im getting?

Your code so far

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

if not distance_mi:
    print(False)

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

elif distance_mi <= 6:
    if has_bike and not is_raining:
        print(True)
    else:
        print(False)

elif distance_mi > 6:
    if has_car and has_ride_share_app:
        print(True)
    else:
        print(False) 

#Your elif distance_mi >= 6 branch only checks has_ride_share_app and uses a >= comparison, so it never prints True when has_car is True. Modify that branch to use a > comparison and include has_car in the condition (e.g., has_car...)

Your browser information:

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

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

GitHub Link: freeCodeCamp/curriculum/challenges/english/blocks/lab-travel-weather-planner/694acade1d4afdbce71e5840.md at main · freeCodeCamp/freeCodeCamp · GitHub

Welcome back @d.marterosyan,

Do both has_car and has_ride_share need to be True?

Happy coding