Construye un planificador de clima para viajes. - Construye un Planificador de Clima para Viajes

Cuéntanos qué está pasando:

Hola, soy nueva programando , no entiendo porque esta mal el código fuente
Podrían ayudarme?

Tu código hasta el momento

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

if distance_mi == bool (distance_mi):
    print ("in boolean")
elif distance_mi <= 1 and is_raining == False:
    print ("in <=1 no rain")
elif distance_mi <= 1 and is_raining == True:
    print ("in <=1 rain")
    print (False)
else:
    print ("in else")
if distance_mi>6 and has_car ==True:
    print ("in >6 and car")
    print (True)
else:
    print ("in >6 else")


Información de tu navegador:

El agente de usuario es: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36

Información del Desafío:

Construye un planificador de clima para viajes. - Construye un Planificador de Clima para Viajes

Welcome to the forum @Marisol!

Please organize your code so it prints only one thing. Your prints are fine for debugging but should be removed before you run the final tests. Print only True or False.

Happy coding!