【发布时间】:2016-10-03 21:53:04
【问题描述】:
所以我想添加另一个列表的相同索引的变量并将该变量添加到总数中。在这种情况下,我试图让分数等于拼字游戏中的字母。
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
point_values = [1, 3, 3, 2, 1, 4, 2, 4, 1, 8, 5, 1, 3, 1, 1, 3, 10, 1, 1, 1, 1, 4, 4, 8, 4, 10]
所以我希望a 等于 1,c 等于 3。
假设我有一个rack = ['c','a','t']
我怎样才能使'rack' == points = 5?
这是我预先存在的代码:如果我说 'c' 和每个字母,它会给出 Out[1]: 87。
import random
def load_words():
"""
Returns a list of valid words. Words are strings of lowercase letters.
"""
# inFile: file
inFile = open('words.txt', 'r')
# line: string
line = inFile.readline()
# wordlist: list of strings
wordlist = line.split()
return wordlist
letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z']
point_values = [1, 3, 3, 2, 1, 4, 2, 4, 1, 8, 5, 1, 3, 1, 1, 3, 10, 1, 1, 1, 1, 4, 4, 8, 4, 10]
bag_of_letters = []
for x in range(26):
for i in range(letter_count[x]):
bag_of_letters.append(letters[x])
rack = []
for i in range(7):
rack.append(bag_of_letters.pop(random.randint(0,len(bag_of_letters)-1)))
print (rack)
points = 0
total_points = 0
round_count = 10
letterlst = []
while(round_count >= 0):
word = input("GIMME A LETTER TO COUNT THE SCORE OF: ")
for i in word:
letterlst += i
for let in word:
for letter in letters:
for word_rack in rack:
if let == word_rack:
points += point_values[letters.index(letter)]
total_points += points
if round_count == 0:
print("You have gotten",total_points,"points at the end of your round")
print(points,"points this round")
points = 0
round_count -= 1
【问题讨论】:
-
我建议您使用字典(字母到值)而不是两个列表。