Build a Travel Weather Planner - Build a Travel Weather Planner

Tell us what’s happening:

I am not able to complete the tasks. I am stucked.

Your code so far

distance_mi = 20
is_raining = True
has_bike = False
has_car = False
has_ride_share_app = True
if not isinstance(distance_mi, int):
    print(True)

elif distance_mi <= 1:
    if is_raining == False:
        print(True) 
    else:
        print(False)
    
elif distance_mi >= 1 and distance_mi <= 6:
    if has_bike == True and is_raining == False:
        print(True) 
    else:
        print(False)
elif distance_mi >= 6:
    if has_car  == True:
        print(True)
    elif has_ride_share_app == True:
        print(True)
    else:
        print(False)

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

A post was merged into an existing topic: Build a Travel Weather Planner - Build a Travel Weather Planner