<PLEASE USE THE FOLLOWING TEMPLATE TO HELP YOU CREATE A GREAT POST!>
<Below this line, add a link to the EXACT exercise that you are stuck at.>
<In what way does your code behave incorrectly? Include ALL error messages.>
<What do you expect to happen instead?>
Can someone please explain to me why this works? As far as i can see it’s saying check the dict for
lower case… but what about uppercase?
def scrabble_score(word):
total = 0
for i in word.lower():
total += score[i]
return total
<do not remove the three backticks above>