亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python通過對字典的排序,對json字段進行排序的實例

發布時間:2020-09-08 14:55:36 來源:腳本之家 閱讀:132 作者:abc15766228491 欄目:開發技術

如下所示:

dic = dict()
dic['a'] = 1
dic['b'] = 2
dic['c'] = 3
print(dic.items())

import json
jsons = json.dumps(dic)
print(jsons)

結果:

dic is: dict_items([('c', 3), ('b', 2), ('a', 1)])
jsons: {"c": 3, "b": 2, "a": 1}

通過使用collecions,進行排序。collections是一個python的內建模塊。

import collections
dic = collections.OrderedDict()
# dic = dict()
dic['a'] = 1
dic['b'] = 2
dic['c'] = 3
print("dic is:",dic.items())

import json
jsons = json.dumps(dic)
print("jsons:",jsons)

結果:

dic is: odict_items([('a', 1), ('b', 2), ('c', 3)])
jsons: {"a": 1, "b": 2, "c": 3}

補充拓展:對JSON集合 某個鍵進行升序/降序排列

我就廢話不多說了,直接上代碼吧

$(document).ready(function () { 
  //對json進行降序排序函數 
  var colId="age" 
  var desc = function(x,y) 
  { 
    return (x[colId] < y[colId]) ? 1 : -1 
  } 
  //對json進行升序排序函數 
  var asc = function(x,y) 
  { 
    return (x[colId] > y[colId]) ? 1 : -1 
  } 
  var arr2 = [ 
    {name:"kitty", age:12}, 
    {name:"sonny", age:9}, 
    {name:"jake", age:13}, 
    {name:"fun", age:24} 
  ]; 
  document.writeln("按age進行升序排序:<br>"); 
  arr2.sort(asc); //升序排序 
  document.writeln(JSON.stringify(arr2)); 
 
 
  document.writeln("<br>按age進行降序排序:<br>"); 
  arr2.sort(desc); //降序排序 
  document.writeln(JSON.stringify(arr2)); 
 
}); 

以上這篇python通過對字典的排序,對json字段進行排序的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉林市| 淮北市| 乐都县| 定结县| 汶上县| 云梦县| 琼中| 怀安县| 浦东新区| 十堰市| 仁怀市| 乐亭县| 子洲县| 青神县| 通化市| 新河县| 新泰市| 连州市| 邳州市| 古浪县| 和龙市| 合阳县| 垣曲县| 溆浦县| 定边县| 炉霍县| 巫溪县| 四会市| 宜州市| 大邑县| 宁化县| 醴陵市| 瑞金市| 云和县| 海兴县| 鄂尔多斯市| 绥中县| 凤城市| 山丹县| 梅河口市| 页游|