简体   繁体   中英

How to print list items in python

I have written the following code:

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

What I want to do is to print the largest number with its variable name like:

d:8
b:5
c:2

but using the above code I can only print the ascending list of numbers, not the corresponding variable names. Please suggest a way to fix this.

Use a dict instead:

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

I think you can use 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)

List don't save variable names

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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