Build a Travel Weather Planner - Build a Travel Weather Planner

Tell us what’s happening:

this looks right but all of the tasks have x"s on them and i dont know why

Your code so far

distance_mi=(int(input("how far away are you?")))
is_raining=(input("is it raining today?"))
has_bike=(input("do you have a bike?"))
has_car=(input("do you have a car? "))
has_ride_share_app=(input("do you have any ride share apps?"))
if distance_mi <= 1 and is_raining==False:
    print("True")
else:
    print("False")
if distance_mi >=1 and distance_mi <=6 and has_bike==True and is_raining==False:
    print("you can go out")
else:
    print("you cant go out")
if distance_mi > 6 and has_car==True or has_ride_share_app==True:
    print("You can go out")
else:
    print("you cant go out")


Your browser information:

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

Challenge Information:

Build a Travel Weather Planner - Build a Travel Weather Planner

Welcome to the forum @quin1

Do not prompt for a value, just assign a value to each variable.

You need to print either True or False

Happy coding