Instruction
Excellent! One more question...
Exercise
Create a function named get_most_frequent_element(string_list) that accepts a list of strings and returns a tuple with two elements, the string which appears most frequently in the list, and the number of appearances of that string. Note that 'String' and 'string' are different strings, so there's no need to use a .lower() method.
You can use the quotation dictionary to test your function.



