#!/usr/bin/python import json raw_json = '{"foo":"Hello","bar":"World"}' json = json.loads(raw_json) for key in json: print("key = " + ...
確定! 回上一頁