中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

浦江县| 乐都县| 宕昌县| 安康市| 柞水县| 贵阳市| 松滋市| 黔东| 冕宁县| 上饶县| 开化县| 江城| 清水河县| 永顺县| 柯坪县| 辉县市| 资阳市| 镇江市| 乌鲁木齐县| 遵化市| 东明县| 漯河市| 通许县| 昆明市| 井研县| 山东省| 武清区| 刚察县| 双峰县| 凌海市| 东乡族自治县| 碌曲县| 青神县| 栾川县| 关岭| 岳阳县| 武安市| 广州市| 寻甸| 扬州市| 姚安县|