如何在python中打印列表项

时间:2014-02-09 12:54:39

标签: python

我写了以下代码:

def count():
    a = 1
    b = 5
    c = 2
    d = 8
    i = 0
    list1 = [a, b, c, d]
    le = len(list1)

    while (i < le):
        x = max(list1)
        print(x)
        list1.remove(x)
        i = i + 1

我想要做的是用变量名打印最大的数字,如:

d:8
b:5
c:2

但是使用上面的代码我只能打印数字的升序列表,而不是相应的变量名称。请提出一种解决方法。

2 个答案:

答案 0 :(得分:3)

改为使用dict

In [2]: dic=dict(a=1, b=5, c=2, d=8)

In [3]: dic
Out[3]: {'a': 1, 'b': 5, 'c': 2, 'd': 8}

In [5]: sortedKeys=sorted(dic, key=dic.get, reverse=True)

In [6]: sortedKeys
Out[6]: ['d', 'b', 'c', 'a']

In [7]: for i in sortedKeys:
   ...:     print i, dic[i]
   ...:     
d 8
b 5
c 2
a 1

答案 1 :(得分:0)

我认为您可以使用OrderedDict()

from collections import OrderedDict

a, b, c, d = 1, 2, 3, 6
vars = {
     'a' : a,
     'b' : b,
     'c' : c,
     'd' : d
}

d_sorted_by_value = OrderedDict(sorted(vars.items(), key=x.get, reverse=True))

for k, v in d_sorted_by_value.items():
    print "{}: {}".format(k,v)

列表不保存变量名称