Build a code for caught speeding Python coding You are drivi


Build a code for caught speeding
Python coding You are driving a little too fast, and a police officer stops you. Write code to compute the result, encoded as an int value: 0= no ticket, 1 = small ticket, 2 = big ticket. If speed is 60 or less, the result is 0. If speed is between 61 and 80 inclusive, the result is 1. If speed is 81 or more, the result is 2. Unless it is your birthday -- on that day, your speed can be 5 higher in all cases. caught_speeding (60. False) rightarrow 0 caught_speeding(65, False) rightarrow 1 caught_speedmg(65, True) rightarrow 0 fill in the subroutine and test your code def caught_speeding(speed, is_birthday):

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

 Build a code for caught speeding Python coding You are driving a little too fast, and a police officer stops you. Write code to compute the result, encoded as

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site