Build a code for caught speeding Python coding You are drivi
Build a code for caught speeding
Solution
def caught_speeding(speed, is_birthday):
# if 60 0r less
if speed<=60:
return 0
# if is_birthday == True and speed 61 - 65
if is_birthday == True and speed >=61 and speed <=65
return 0
# if between 61 and 80 inclisive or over 80
if speed >=61 and speed<=80
return 1
if is_birthday == True and speed > 85:
return 2
if is_birthday == True and speed > 80 and speed <=85:
return1
if is_birthday == False and speed > 80:
return 2
else:
return 1
