繁体   English   中英

如何将字典值从最高到最低排序?

[英]How to sort dictionary values from Highest to lowest?

我的问题是如何根据最高分数撤出冠军? 由于您无法按字典排序,因此我尝试使用列表进行排序,但随后不会出现名称,仅显示分数...

a = {'name_a':0}
b = {'name_b':0}
c = {'name_c':0}
d = {'name_d':0}
e = {'name_e':0}

print("Each time someone scores a point, the letter of his name is typed in lowercase. If someone loses a point, the letter of his name is typed in uppercase")


score = input('Enter series of charachters indicating who scored a poitn: ')

for i in score:
    if i == 'a':
        a['name_a'] += 1
    if i == 'A':
        a['name_a'] -= 1
    if i == 'b':
        b['name_b'] += 1
    if i == 'B':
        b['name_b'] -= 1
    if i == 'c':
        c['name_c'] += 1
    if i == 'C':
        c['name_c'] -= 1
    if i == 'd':
        d['name_d'] += 1
    if i == 'D':
        d['name_d'] -= 1
    if i == 'e':
        e['name_e'] += 1
    if i == 'E':
        e['name_e'] -= 1

print(a,b,c,d,e)

print('Winner is: ', )

这将起作用:

max((i, name) for d in (a,b,c,d,e) for name, i in d.items())[1]

max_key = ""
max_val = 0

for key, value in d.items():
    if (value > max_val):
        max_val = value
        max_key = key

你是这个意思吗?

您可能要使用一个字典,而不是每个字典,例如:

scores = {
    'a': 0,
    'b': 0,
    'c': 0,
    'd': 0,
    'e': 0,
}

然后,随着积分的计算,您可以跟踪得分最高的球员:

point_scored = input('Enter series of charachters indicating who scored a point: ')


for i in point_scored:
    if not scores.get(i) is None:
        scores[i] += 1
    elif not scores.get(i.lower()) is None:
        scores[i.lower()] -= 1
    else:
        print(str(i) + ' is not a valid player...')

winner = max(scores, key=scores.get)

print(scores)

print('Winner is ' + winner)

我找到了答案

winner = (sorted(d.items(), key = lambda x: int(x[1]), reverse  = True))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM