this is my code:
score1 = input("enter your math score:n")
score2 = input("enter your science score:n")
score3 = input("enter your physics score:n")
score4 = input("enter your statistics score:n")
score5 = input("enter your geometry score :n")
average = (score1 + score2 + score3 + score4 + score5)//5
and i have got TypeError: unsupported operand type(s) for //: ‘str’ and ‘int’
New contributor
aida lotfi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.