score = {"a": 1, "c": 3, "b": 3, "e": 1, "d": 2, "g": 2,
"f": 4, "i": 1, "h": 4, "k": 5, "j": 8, "m": 3,
"l": 1, "o": 1, "n": 1, "q": 10, "p": 3, "s": 1,
"r": 1, "u": 1, "t": 1, "w": 4, "v": 4, "y": 4,
"x": 8, "z": 10}
def scrabble_score(word):
word = word.lower()
total = 0
for letter in word:
for letter in score:
if letter == letter:
total = total + score[letter]
return total
Hey!
I have a few questions about the code;
so first we say we want to put everything in lowercase, got that
-
- why do we always have to start with total = 0? does this mean that we begin the score with 0?
then we say for every letter in the dictionary score, if the letter is a letter, total is the total plus the score (of the letter)
then we return total.
-
- is total a keyword in python?
Thank you in advance!