在Python中订购DICT

时间:2018-06-01 21:07:56

标签: python sorting

我将数据加载到python dict中,从coinmarketcap的api中提取,然后我希望能够按等级对其进行排序。 我已经在网上看了一下,虽然我已经看过一些例子或订购但我无法让它发挥作用,但我们将非常感谢任何帮助。 有人可以帮忙吗?

{
  'data': {
    1: {
      u'last_updated': 1527886475,
      u'name': u'Bitcoin',
      u'symbol': u'BTC',
      u'rank': 1,
      u'total_supply': '17068825.0',
      u'quotes': {
        u'USD': {
          u'market_cap': '127372692798.0',
          u'percent_change_7d': '0.0',
          u'price': '7462.3',
          u'percent_change_24h': '-1.29',
          u'volume_24h': '4962840000.0',
          u'percent_change_1h': '0.03'
        }
      },
      u'max_supply': '21000000.0',
      u'circulating_supply': '17068825.0',
      u'website_slug': u'bitcoin',
      u'id': 1
    },
    825: {
      u'last_updated': 1527886449,
      u'name': u'Tether',
      u'symbol': u'USDT',
      u'rank': 13,
      u'total_supply': '2830109970.0',
      u'quotes': {
        u'USD': {
          u'market_cap': '2508920883.0',
          u'percent_change_7d': '-0.03',
          u'price': '1.00071',
          u'percent_change_24h': '0.01',
          u'volume_24h': '2542980000.0',
          u'percent_change_1h': '0.1'
        }
      },
      u'max_supply': None,
      u'circulating_supply': '2507140814.0',
      u'website_slug': u'tether',
      u'id': 825
    },
    1027: {
      u'last_updated': 1527886459,
      u'name': u'Ethereum',
      u'symbol': u'ETH',
      u'rank': 2,
      u'total_supply': '99807496.0',
      u'quotes': {
        u'USD': {
          u'market_cap': '56961236045.0',
          u'percent_change_7d': '-2.88',
          u'price': '570.711',
          u'percent_change_24h': '-1.62',
          u'volume_24h': '1986760000.0',
          u'percent_change_1h': '-0.39'
        }
      },
      u'max_supply': None,
      u'circulating_supply': '99807496.0',
      u'website_slug': u'ethereum',
      u'id': 1027
    }
  }
}

2 个答案:

答案 0 :(得分:2)

使用collections.OrderedDict

<强>演示:

from collections import OrderedDict
print( OrderedDict(sorted(data['data'].items(), key=lambda (x, y): y['rank'])) )
print( OrderedDict(sorted(data['data'].items(), key=lambda (x, y): y['rank'], reverse=True)) )  #Descending order

<强>输出:

OrderedDict([(1, {u'total_supply': '17068825.0', u'quotes': {u'USD': {u'market_cap': '127372692798.0', u'percent_change_7d': '0.0', u'price': '7462.3', u'percent_change_1h': '0.03', u'volume_24h': '4962840000.0', u'percent_change_24h': '-1.29'}}, u'max_supply': '21000000.0', u'last_updated': 1527886475, u'name': u'Bitcoin', u'website_slug': u'bitcoin', u'symbol': u'BTC', u'id': 1, u'rank': 1, u'circulating_supply': '17068825.0'}), (1027, {u'total_supply': '99807496.0', u'quotes': {u'USD': {u'market_cap': '56961236045.0', u'percent_change_7d': '-2.88', u'price': '570.711', u'percent_change_1h': '-0.39', u'volume_24h': '1986760000.0', u'percent_change_24h': '-1.62'}}, u'max_supply': None, u'last_updated': 1527886459, u'name': u'Ethereum', u'website_slug': u'ethereum', u'symbol': u'ETH', u'id': 1027, u'rank': 2, u'circulating_supply': '99807496.0'}), (825, {u'total_supply': '2830109970.0', u'quotes': {u'USD': {u'market_cap': '2508920883.0', u'percent_change_7d': '-0.03', u'price': '1.00071', u'percent_change_1h': '0.1', u'volume_24h': '2542980000.0', u'percent_change_24h': '0.01'}}, u'max_supply': None, u'last_updated': 1527886449, u'name': u'Tether', u'website_slug': u'tether', u'symbol': u'USDT', u'id': 825, u'rank': 13, u'circulating_supply': '2507140814.0'})])
OrderedDict([(825, {u'total_supply': '2830109970.0', u'quotes': {u'USD': {u'market_cap': '2508920883.0', u'percent_change_7d': '-0.03', u'price': '1.00071', u'percent_change_1h': '0.1', u'volume_24h': '2542980000.0', u'percent_change_24h': '0.01'}}, u'max_supply': None, u'last_updated': 1527886449, u'name': u'Tether', u'website_slug': u'tether', u'symbol': u'USDT', u'id': 825, u'rank': 13, u'circulating_supply': '2507140814.0'}), (1027, {u'total_supply': '99807496.0', u'quotes': {u'USD': {u'market_cap': '56961236045.0', u'percent_change_7d': '-2.88', u'price': '570.711', u'percent_change_1h': '-0.39', u'volume_24h': '1986760000.0', u'percent_change_24h': '-1.62'}}, u'max_supply': None, u'last_updated': 1527886459, u'name': u'Ethereum', u'website_slug': u'ethereum', u'symbol': u'ETH', u'id': 1027, u'rank': 2, u'circulating_supply': '99807496.0'}), (1, {u'total_supply': '17068825.0', u'quotes': {u'USD': {u'market_cap': '127372692798.0', u'percent_change_7d': '0.0', u'price': '7462.3', u'percent_change_1h': '0.03', u'volume_24h': '4962840000.0', u'percent_change_24h': '-1.29'}}, u'max_supply': '21000000.0', u'last_updated': 1527886475, u'name': u'Bitcoin', u'website_slug': u'bitcoin', u'symbol': u'BTC', u'id': 1, u'rank': 1, u'circulating_supply': '17068825.0'})])

答案 1 :(得分:1)

您无法订购dict,但您可以创建items的列表,并将其排序:

sorted(data.iteritems(), key=lambda x:x[1][u'rank'])