my_points = 95 total_points = 110 my_score = my_points/total_points * 100 print ("My score on the BIO test was", my_score) if my_score >= 90: print ("Awesome!") elif my_score >= 80: print ("Doing fine") elif my_score >= 70: print ("So so") elif my_score < 70: print ("Uh oh!!")