Python Json 解析
我在使用 json 库用 python 解析 json 时遇到了一些问题。 这是我试图解析的 json 的格式:
{'entry':[
{
JSON Data 1
},
JSON Data 2
}
]}
这是我的 Python:
for entry in response['entry'][0]:
video['video_url'] = entry['id']['$t']
video['published'] = entry['published']['$t']
我似乎无法使用上面的代码迭代两个 JSON 块,我只得到了某些输出的第一个块原因。
有人有什么想法吗?提前致谢。
I'm having a bit of an issue with parsing json with python using the json library.
Here is the format of the json I'm trying to parse:
{'entry':[
{
JSON Data 1
},
JSON Data 2
}
]}
And here is my Python:
for entry in response['entry'][0]:
video['video_url'] = entry['id']['$t']
video['published'] = entry['published']['$t']
I don't seem to be able to iterate over the two blocks of JSON with the above code, I only get the first block outputted for some reason.
Anybody have any ideas?? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果:
并且:
那么:
或者:
If:
And:
Then:
Or:
该列表包含 2 个单独的字典。直接迭代列表。
That list contains 2 separate dicts. Iterate over the list directly.