Build a Travel Weather Planner - Build a Travel Weather Planner

Tell us what’s happening:

i am stuck here and i can not figer out the problem and i dont know what to do here

Your code so far

distance_mi=5
is_rainning=True
has_bike=False
has_car=True
has_ride_share_app=False
if not distance_mi:
    print(False)
elif distance_mi<=1:
    if not is_rainning:
        print(True)
    else:
        print(False)
elif distance_mi<=6:
    if has_bike and not is_rainning:
        print(True)
    else:
        print(False)
else:
    if 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/147.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

Do you have an error message in the console? It should indicate that one of your variable names is incorrect.

yeah it had a problem i saw it and corrected it