Welcome to Westonci.ca, your one-stop destination for finding answers to all your questions. Join our expert community now! Explore thousands of questions and answers from a knowledgeable community of experts ready to help you find solutions. Join our Q&A platform to connect with experts dedicated to providing accurate answers to your questions in various fields.

3.5 code practice
grade = str(input("What year of high school are you in?: "))

if ("grade ==Freshman"):

print("You are in grade: 9")

elif ("grade == Sophomore"):

print("You are in grade: 10")

elif ("grade == Junior"):

print("You are in grade: 11")

elif ("grade == Senior"):

print("You are in grade: 12")

else:

print("Not in High School")

It keeps printing your are in grade 9. Why?