我正在尝试解析 json 对象并遇到问题。
import json
record= '{"shirt":{"red":{"quanitity":100},"blue":{"quantity":10}},"pants":{"black":{"quantity":50}}}'
inventory = json.loads(record)
#HELP NEEDED HERE
for item in inventory:
print item
我可以弄清楚如何获得这些值。我可以拿到钥匙。请帮忙。