def applicant_selector(gpa, ps_score, ec_count):
if gpa >= 3.0 and ps_score >= 90 and ec_count >= 3:
return “This applicant should be accepted.”
elif not ec_count >= 3:
return “This applicant should be given an in-person interview.”
else:
return “This applicant should be rejected.”
So i was playing with the code in the Python Control Flow, problem is if i use else statement after elif statement i can’t get required output which should be “This applicant should be rejected.”