Travel weather planner , When distance_mi is a falsy value, the program should print False. solve this

distance_mi=0

is_raining=False

has_bike=True

has_car=False

has_ride_share_app=True

if not distance_mi :

print(False)

distance_mi = 4

if 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 or (has_ride_share_app==True):

    print(True)

else:

    print(False)

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

what is the part of your code that deals with checking if distance_mi is a falsy value?

and if it is a falsy value, is it only False that is printed?