0

我有这本字典,它存储成对的两个测验分数和参与者的 ID。结构是 {(quiz1, quiz2): ID}

scoredict = {('83', '93'): '81937', ('88', '86'): '33576', ('96', '97'): '01084', 
('81', '95'): '48534', ('84', '72'): '11235', ('77', '80'): '01835', ('90', '83'): 
'39488', ('75', '74'): '31049', ('80', '62'): '10188', ('85', '86'): '63011', 
('66', '89'): '58272'}

我想让这个程序通过输入一对测验分数来查找 ID。例如,如果用户为测验 1 和测验 2 输入 83 和 93,它将返回 81937。自过去 48 小时以来我一直在研究这个,但我的代码都没有工作......

是否可以为两个测验找到最接近的可用分数并打印 ID?

4

3 回答 3

4

我验证了您的解决方案已经适用于ipython

In [1]: scoredict = {('83', '93'): '81937', ('88', '86'): '33576', ('96', '97'): '01084', 
   ...: ('81', '95'): '48534', ('84', '72'): '11235', ('77', '80'): '01835', ('90', '83'): 
   ...: '39488', ('75', '74'): '31049', ('80', '62'): '10188', ('85', '86'): '63011', 
   ...: ('66', '89'): '58272'}

In [2]: scoredict['83','93']
Out[2]: '81937'
于 2012-04-13T23:12:43.790 回答
1

对于最接近的分数,您可以尝试以下操作:

test = (83, 93)

deviation = float('inf')
best_match = None

for score1, score2 in scoredict:
  error = abs(int(score1) - test[0]) + abs(int(score2) - test[1])

  if error < deviation:
    deviation = error
    best_match = (score1, score2)

print scoredict[best_match]
于 2012-04-13T23:17:19.977 回答
0

只需这样做:

>>> scoredict[(score1,score2)]
于 2012-04-13T23:12:59.920 回答