How do you append to your list of scores and then multiply by them?
I have scoreList= [] before my for loop. and i tried to use scoreList = scoreList.append("score") to add the inputted scores into a list.
My error message says: "NoneType" object has no attribute 'append'
any help is appreciated ^^
EDIT: My problem was that i did not need the scoreList = ..... , i only needed the scoreList.append(score)