1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | 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} entry = str(raw_input("What's your word?")) def scrabble_score(word): word = word.lower() points = 0 for text in word: points += score[text] return points print scrabble_score(entry) | cs |
하다보니 포럼에서 거의 다 베껴온것 같다 ㅠㅠ
'codeacademy' 카테고리의 다른 글
| 15. Practice Makes Perfect / remove_duplicates (0) | 2017.03.28 |
|---|---|
| 15. Practice Makes Perfect / censor (0) | 2017.03.28 |
| 15. Practice makes Perfect / anti_vowel (0) | 2017.03.28 |
| 15. Practice Makes Perfect / reverse (0) | 2017.03.28 |
| 15. Practice Makes Perfect / is_prime (0) | 2017.03.28 |
댓글