User Tools

Site Tools


help:python:data_class

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
help:python:data_class [2020/08/11 15:01] – [Data Class in Python] gerhardhelp:python:data_class [2020/08/11 15:04] (current) – [Data Class in Python] gerhard
Line 79: Line 79:
 import json import json
  
-In [140]: json.dumps(dict(data)) +json.dumps(dict(data),indent=2)
-Out[140]: '{"c": {"val3": 789, "str3": "ghi"}, "a": {"val1": 123, "str1": "abc"}, "b": {"val2": 456, "str2": "def"}}'+
  
 +</code>
  
 +The resulting output is:
 +
 +<code json>
 +{
 +  "c": {
 +    "val3": 789,
 +    "str3": "ghi"
 +  },
 +  "a": {
 +    "val1": 123,
 +    "str1": "abc"
 +  },
 +  "b": {
 +    "val2": 456,
 +    "str2": "def"
 +  }
 +}
 </code> </code>
  
help/python/data_class.1597158089.txt.gz · Last modified: 2020/08/11 15:01 by gerhard