I need help figuring out what I am doing wrong on python 3.
I am a beginner in python 3, and I was trying to make a code which changes a percentage score into a letter grade. I ran into a problem where if I type number above 95 it shows me all my if statement in a row even though I only want it to show me the first one. Here is my code. print(" Welcome to the letter grade finder") print("just type in you percentage and I will tell you letter grade") #Type Grade here: grade=100 #Now click run if grade>=95 and >=100: print("\n \n \n You got an A+, Excellent, you have exceeded the expectations!!!") elif grade >= 87: print("\n \n \n You got an A, Great job, you have exceeded the expectations!!!") if grade>=80: print("\n \n \n You got an A-, You are doing good, you have exceeded the expectations!!!") elif grade >= 77: print("\n \n \n You got an B+, You worked hard, You are slightly above the expectations :)") if grade >= 74: print("\n \n \n You got an B, Perfect, You are meeting the expectations :) ") elif grade >= 70: print("\n \n \n You got an B-, So close, You are slightly below the expectations :) ") if grade >= 67: print("\n \n \n You got an C+, Try harder next time, You are below expectations :o ") elif grade >= 64: print("\n \n \n You got an c, Come on, do better, you are below expectations :o ") if grade >= 60: print("\n \n \n You got an C-, You are not trying hard enough , you are below expectations :o") Can someone please help me?