Build a Travel Weather Planner - Build a Travel Weather Planner

Tell us what’s happening:

i can’t seem to get step 15, 16, 18, 19 and 20.
please help me

Your code so far

distance_mi = 7
is_raining = True
has_bike = True
has_car = True
has_ride_share_app = True 
if has_car or has_ride_share_app:
    print(True)
    if distance_mi <= 1 and not is_raining:
        print(True)
    elif distance_mi == 0:
        print(False)
else: 
    print(False)

if not distance_mi:
    print(False)






Your browser information:

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

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 to the forum @josephejiga!

Your very first condition does not take distance_mi into consideration yet each user story is related to the value of distance_mi.

Please read through the user stories carefully to make sure you are implementing them as asked.

Happy coding!

I reorganized my code and printed once and i was able to resolve the matter, Thanks for your help