# Probably a faster way to handle this
alpha_list = [x for x in simple_list ifnot x.isnumeric()]
grade_list = [x for x in simple_list if x.isnumeric()]
# Put the alpha grades at the beginning of the grade_listif alpha_list:
grade_list = sorted(alpha_list) + sorted(grade_list)