JSON processing in Python: Difference between revisions
Jump to navigation
Jump to search
Line 8: | Line 8: | ||
data = json.loads('{"color":"blue", "size":10, "details":{"shape":{"texture":"bumpy", "orientation":"vertical"}}}') | data = json.loads('{"color":"blue", "size":10, "details":{"shape":{"texture":"bumpy", "orientation":"vertical"}}}') | ||
print(data.get("color")) | print(data.get("color")) # displays blue | ||
print(data["color"]) | print(data["color"]) # displays blue | ||
print(data.get("size")) | print(data.get("size")) # displays 10 | ||
print(data["details"]["shape"]["texture"]) | print(data["details"]["shape"]["texture"]) # displays bumpy | ||
</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")) # displays blue
print(data["color"]) # displays blue
print(data.get("size")) # displays 10
print(data["details"]["shape"]["texture"]) # displays bumpy