Activity 5.28.1.
Create a function called
get_grade that takes in a parameter percentage and returns a string variable called letter_grade. If the percentage is greater than 100, return "You can't get over 100.". Otherwise, it should return 'A' if the score is greater than or equal to 90, 'B' if greater than or equal to 80, 'C' if greater than or equal to 70, 'D' if greater than or equal to 60, and otherwise 'E'. For example, get_grade(90) should return 'A'.

