Created
September 11, 2014 20:33
-
-
Save utinajerolps/a7c373d3cde9d130912a to your computer and use it in GitHub Desktop.
scrabble_score
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = str(word).lower() | |
total = 0 | |
for letters in word: | |
total += score[letters] | |
return total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment