However, I think this is more generalized? When I click to submit, I receive the hint to create the first variable, and when I look at the tests list they are all X’s… Then I went to post here about it (in its own spot) and my keyboard only flashes when I try to enter in description box. This leads me to think it’s a bigger issue. I should mention I’ve had this problem before, but retyping usually fixes it. I’ve tried retyping and copy/paste, and even stealing code that was same as mine and pasting, and all is a no go. Any help would be greatly appreciated. (Sorry, I don’t know how else to show my system or screen except print screen, but you can’t play then, correct. )Thanks
MY CODE:
distance_mi = 4
is_raining = True
has_bike = True
has_car = True
has_ride_share_app = True
if distance_mi == 0:
print('False')
elif distance_mi<=1 and is_raining==False:
print('True')
elif distance_mi>1 and distance_mi<=6 and (has_bike==True and is_raining==False):
print('True')
elif distance_mi>6 and (has_car==True or has_ride_share_app==True):
print('True')
else:
print('False')
***PROGRAM RESPONSES***:
Hints== You should have a variable named distance_mi.
Tests==1. You should have a variable named distance_mi.
2. You should assign a number to your distance_mi variable.
Etc though 23