my_points = 75 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!") print ("You rock!") elif my_score >= 80: print ("Doing fine") elif my_score >= 70: print ("So so") else: print ("Uh oh!!") print ("Better finally buy the book!")