Beginner here! Been racking my brain over this Python test question for two days...Can anyone point me in the right direction? Thanks :)
Tried about a dozen versions, but here's where I feel I'm closest:
=======================
def exam_grade(score):
    if exam_grade(score) >= 96:
        grade = "Top Score"
    elif exam_grade(score) >= 60 and <=95:
        grade = "Pass"
    else:
        grade = "Fail"
    return grade
print(exam_grade(65)) # Should print Pass
print(exam_grade(55)) # Should print Fail
print(exam_grade(60)) # Should print Pass
print(exam_grade(95)) # Should print Pass
print(exam_grade(100)) # Should print Top Score
print(exam_grade(0)) # Should print Fail 
=======================
*It seems like no matter what I tweak, I get syntax errors on >, <, <=, >=, or some end line character. :/
