this is a pretty simple idea, you enter your test score and if you got above a 70% (35/50) you can do corrections for 1 pt back essentially giving you a 100%. If you get under 70% you can do corrections for 1/2 a point back.
this is giving me a invalid syntax and putting the cursor between the last " and )
score = input("How many problems did you get right on the test?")
maxscore = 50
passscore = 35
wrong = (maxscore - score)
if (score > passscore):
print ("You will get a 100%")
if (score < passscore):
print("You can get"(wrong)"% back with text corrections")
Im terrible at programing so sorry if i seem really stupid here.