JSON processing in Python: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
print(data["color"]) | print(data["color"]) | ||
print(data.get("size")) | print(data.get("size")) | ||
print(data["shape"]["texture"]) | print(data["details"]["shape"]["texture"]) | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 07:46, 12 January 2022
External
Internal
Overview
import json
data = json.loads('{"color":"blue", "size":10, "details":{"shape":{"texture":"bumpy", "orientation":"vertical"}}}')
print(data.get("color"))
print(data["color"])
print(data.get("size"))
print(data["details"]["shape"]["texture"])