Write a Python app that will accept student names and GPAs and test if the student qualifies for either the Dean's List or the Honor Roll. Your app will:
- Ask for and accept a student's last name.
- Quit processing student records if the last name entered is 'ZZZ'.
- Ask for and accept a student's first name.
- Ask for and accept the student's GPA as a float.
- Test if the student's GPA is 3.5 or greater and, if so, print a message saying that the student has made the Dean's List.
- Test if the student's GPA is 3.25 or greater and, if so, print a message saying that the student has made the Honor Roll.
- Test your app using at least five students.
Your header comments need to contain:
- A brief description of what your app will do