Question
The function should return True if the applicant meets the criteria and False if they do not. In addition, the function should return a message indicating reasons that a candidate is not acceptable.
The acceptableness and message should be returned in a tuple.
Here are the criteria:
1. GPA >=3.0. If GPA is too low the message is "You should have studied harder in school, <name>."
2. Height of at least 5'6" (66") but not more than 6'6" (78"). If the person is not the right size the message is "Sorry, <name>, you do not meet the size requirements of this position.
Solution Preview
This material may consist of step-by-step explanations on how to solve a problem or examples of proper writing, including the use of citations, references, bibliographies, and formatting. This material is made available for the sole purpose of studying and learning - misuse is strictly forbidden.
user_name = input("User name: ")gpa = float(input("User gpa: "))
height = float(input("User heigh: "))
applicants=[{'name': user_name, 'gpa':...