method = input("Is it currently raining? ")
if method=="Yes" :
print("You should take the bus.")
else: distance = input("How far in km do you want to travel? ")
if distance == > 2:
print("You should walk.")
elif distance == < 10 :
print("You should take the bus.")
else:
print("You should ride your bike.")
Nvm, i fixed it..for those who have the same problem and were on Grok Learning it was just an indention issue and I forgot to write int...