在Python中获取“KeyError 2”?

时间:2017-02-18 05:24:19

标签: python dictionary indexing

目前,我正在研究Python中的二十一点游戏。为了得分,我称之为以下功能。 highAce ,如果为true,则将ace评为11,如果为false,则将其评为1。

def score_hand(self, highAce):
    curr_score = 0
    special_scores = {'J': 11, 'Q': 12, 'K': 13, 'A': (1, 11)[highAce]}
    for card in self._cards:
        curr_score += special_scores[card[0]] if type(card[0]) is str else card[0]
    return curr_score

self._cards中的所有内容都是一个名为'Card'的名字元组,它具有'rank'和'suit'。

卡片创建如下(这是另一个类):

Card = collections.namedtuple('Card', ['rank', 'suit'])

ranks = [str(n) for n in range(2, 11)] + list('JQKA')
suits = 'spades diamonds clubs hearts'.split()

def __init__(self, seed=None):
 self._cards = [Card(rank, suit) for suit in self.suits for rank in self.ranks]

问题似乎出现在这一行 curr_score += special_scores[card[0]] if type(card[0]) is str else card[0]

迭代器会查看每张卡的“等级”。如果排名不是字符串,那意味着它只是一个数字1~9,这也意味着我们可以简单地将其添加到分数中。但是,如果排名是一个字符串,那意味着它是JQKA。因此,我要么在 special_scores 表中添加它的值或者它的实际等级值。

1 个答案:

答案 0 :(得分:1)

你的排名都是字符串:

public ActionResult searchReview(allReviewList searchItemRev)
    {

        if (searchItemRev.reviewList.Count != 0)
        {
            searchItemRev.reviewList[0].hasReview = "hasReview";
        }
        return View(searchItemRev);
    }

因此 public class reviewCnet { public string goodReview { get; set; } public string badReview { get; set; } public string conclusion { get; set; } public string hasReview { get; set; } public string trustedReview {get;set;} //public List<user> userList = new List<user>(); } public class allReviewList { public List<reviewCnet> reviewList { get; set; } public allReviewList() { reviewList = new List<reviewCnet>(); } } 始终为True。您收到密钥错误,因为>>> ranks = [str(n) for n in range(2, 11)] + list('JQKA') >>> ranks ['2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K', 'A'] 没有type(card[0]) is str,例如,作为密钥。

更简单的解决方案是保留所有字符串的分数。同样只有第一个ace计为11,所以你可以这样做:

special_scores