def springBreakIsHere(plans):    realPlans = {}    for num i…

def springBreakIsHere(plans):    realPlans = {}    for num in range(len(plans)):        each = plans        if each not in realPlans:            realPlans = 1            print(“New plan!”)        else:            print(“Repeat!”)    print (realPlans) >>>springBreakIsHere()    >>>springBreakIsHere()   >>> springBreakIsHere()   >>> springBreakIsHere()

What is the data type of the parameter b_color in the functi…

What is the data type of the parameter b_color in the function below? def border(img, b_width, b_color):​ w, h = img.size​ pixels = img.load()​ for x in range(w):​ for y in range (h):​ if x < b_width:​ pixels = b_color elif y < b_width:​ pixels = b_color​ elif x > ______:​ pixels = b_color​ elif y > ______:​ pixels = b_color​ return(img)​