イム新しい使用してPythonと私のpythonを使用して、私のJSONファイルからいくつかの値を印刷することができますどのように知っていただきたいと思いますが、次は私のJSONファイルPythonでjsonファイルから特定の値を出力する方法は?
{
"[email protected][email protected]": {
"__type__": "TestResult",
"command": "/home/gfx/intel-graphics/intel-gpu-tools/tests/gem_reloc_overflow --run-subtest single-overflow",
"dmesg": "",
"environment": "PIGLIT_PLATFORM=\"mixed_glx_egl\" PIGLIT_SOURCE_DIR=\"/home/gfx/intel-graphics/intel-gpu-tools/piglit\"",
"err": "(gem_reloc_overflow:19562) CRITICAL: Test assertion failure function reloc_tests, file gem_reloc_overflow.c:260:\n(gem_reloc_overflow:19562) CRITICAL: Failed assertion: __gem_execbuf(fd, &execbuf) == -14\n(gem_reloc_overflow:19562) CRITICAL: error: -22 != -14\nSubtest single-overflow failed.\n**** DEBUG ****\n(gem_reloc_overflow:19562) DEBUG: relocation_count=4294967295\n(gem_reloc_overflow:19562) CRITICAL: Test assertion failure function reloc_tests, file gem_reloc_overflow.c:260:\n(gem_reloc_overflow:19562) CRITICAL: Failed assertion: __gem_execbuf(fd, &execbuf) == -14\n(gem_reloc_overflow:19562) CRITICAL: error: -22 != -14\n**** END ****\n",
"exception": null,
"out": "IGT-Version: 1.14-g1e9a3ac (x86_64) (Linux: 4.6.0-rc4-drm-intel-nightly-ww17-commit-1e81bac+ x86_64)\nStack trace:\n #0 [__igt_fail_assert+0x101]\n #1 [reloc_tests+0x6d6]\n #2 [<unknown>+0x6d6]\nSubtest single-overflow: FAIL (8.469s)\n",
"pid": 19562,
"result": "fail",
"returncode": 99,
"subtests": {
"__type__": "Subtests"
},
"time": {
"__type__": "TimeAttribute",
"end": 1462072402.5360818,
"start": 1462072393.7328644
},
"traceback": null
}
}
であると私は必要な値は「結果:失敗します」 。
これまでのところ、私はこのコードを持っている:
import json
with open("9.json") as json_file:
json_data = json.load(json_file)
print(json_data)
thaks
可能な重複tp://stackoverflow.com/questions/12788217/extract-single-value-from-json-response-python) – flyingmeatball
なぜこの質問はlinuxタグを運ぶのですか? –