Very simple: import json data = json.loads('{"one" : "1", "two" : "2", "three" : "3"}') print(data['two']) # or `print data['two']` in ...
確定! 回上一頁