json[更多级别] 到 dict python

发布于 2024-12-10 01:24:08 字数 661 浏览 0 评论 0原文

我无法回答一个简单的问题。

      a = {
          "apiVersion": "2.1",
          "data": {
               "startIndex": 1,
               "items": [{
                    "id": "YVA3UoZM0zU",
                    "title": "Trailer - Lisbela eo Prisioneiro"          
                        }]
                   }
       }

我不知道如何获取信息 ID。 这是一个字符串。 所以,我试图使

           import simplejson as json
           >>> type(js)
           <type 'dict'>
           js = json.loads(a)
           print js['data'{'items'[{'id'}]}]
           >>> syntax error

这个语法无效,我怎样才能得到这个信息?这应该很容易。我哪里做错了?

i'm having trouble with a simple question.

      a = {
          "apiVersion": "2.1",
          "data": {
               "startIndex": 1,
               "items": [{
                    "id": "YVA3UoZM0zU",
                    "title": "Trailer - Lisbela eo Prisioneiro"          
                        }]
                   }
       }

i don't know how to get the info id.
this is a string.
so, i tried to make this

           import simplejson as json
           >>> type(js)
           <type 'dict'>
           js = json.loads(a)
           print js['data'{'items'[{'id'}]}]
           >>> syntax error

this syntax is invalid, how could I get this info? it's supposed to be easy. where I'm making wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海未深 2024-12-17 01:24:08

尝试:

js['data']['items'][0]['id']

看起来这个结构中可能有多个。如果您想将所有项ID提取为列表,请执行以下操作:

[item['id'] for item in js['data']['items']]

Try:

js['data']['items'][0]['id']

It would appear that there may be multiple items in this structure. If you'd like to extract all item ids as a list, the following will do it:

[item['id'] for item in js['data']['items']]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文