VOOZH about

URL: https://www.geeksforgeeks.org/python/python-sort-json-by-value/

⇱ Python | Sort JSON by value - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Sort JSON by value

Last Updated : 12 Feb, 2019
Let's see the different ways to sort the JSON data using Python. What is JSON ? JSON (JavaScript Object Notation) is a lightweight, text-based, language-independent data exchange format that is easy for humans and machines to read and write. JSON can represent two structured types: objects and arrays. An object is an unordered collection of zero or more name/value pairs. An array is an ordered sequence of zero or more values. The values can be strings, numbers, booleans, null, and these two structured types. The task is to sort the JSON first by code, then by grade and then by enrollment_no . Code #1: Sorting in Desc order Output :
DBMS C 9915103000 JIIT
COA A 8815103057 JSS
CN A+ 8815103057 JSS
  Code #2 : By using External library such as Pandas (Sorting in Ascending order).
Output:
 code grade enrollment_no name
0 CN A+ 8815103057 JSS
1 COA A 8815103057 JSS
2 DBMS C 9915103000 JIIT
Comment
Article Tags: