簡體   English   中英

如何使用 Python 在嵌套字典中打印特定的 integer 變量?

[英]How can I print specific integer variables in a nested dictionary by using Python?

這是我的第一個問題:)

我遍歷嵌套字典以打印特定值。 我正在使用以下代碼。

for i in lizzo_top_tracks['tracks']:
    print('Track Name: ' + i['name'])

它適用於字符串變量,但不適用於其他變量。 例如,當我對日期變量使用以下代碼時:

for i in lizzo_top_tracks['tracks']:
    print('Album Release Date: ' + i['release_date'])

我收到這樣的消息 KeyError: 'release_date'

我應該怎么辦?

這是我的嵌套字典的示例:

{'tracks': [{'album': {'album_type': 'album',
    'artists': [{'external_urls': {'spotify': 'https://open.spotify.com/artist/56oDRnqbIiwx4mymNEv7dS'},
      'href': 'https://api.spotify.com/v1/artists/56oDRnqbIiwx4mymNEv7dS',
      'id': '56oDRnqbIiwx4mymNEv7dS',
      'name': 'Lizzo',
      'type': 'artist',
      'uri': 'spotify:artist:56oDRnqbIiwx4mymNEv7dS'}],
    'external_urls': {'spotify': 'https://open.spotify.com/album/74gSdSHe71q7urGWMMn3qB'},
    'href': 'https://api.spotify.com/v1/albums/74gSdSHe71q7urGWMMn3qB',
    'id': '74gSdSHe71q7urGWMMn3qB',
    'images': [{'height': 640,
      'width': 640}],
    'name': 'Cuz I Love You (Deluxe)',
    'release_date': '2019-05-03',
    'release_date_precision': 'day',
    'total_tracks': 14,
    'type': 'album',
    'uri': 'spotify:album:74gSdSHe71q7urGWMMn3qB'}]}

您發布的代碼在語法上不正確; 通過 Python 解釋器運行它會在最后一行出現語法錯誤。 看起來你在最后的某個地方丟失了一個花括號。 :)

我通過它並修復了空白區域以使結構更容易看到; 您對其進行格式化的方式使得很難看到哪些鍵位於哪個嵌套級別,但是通過一致的縮進,它變得更加清晰:

lizzo_top_tracks = {
    'tracks': [{
        'album': {
            'album_type': 'album',
            'artists': [{
                'external_urls': {
                    'spotify': 'https://open.spotify.com/artist/56oDRnqbIiwx4mymNEv7dS'
                },
                'href': 'https://api.spotify.com/v1/artists/56oDRnqbIiwx4mymNEv7dS',
                'id': '56oDRnqbIiwx4mymNEv7dS',
                'name': 'Lizzo',
                'type': 'artist',
                'uri': 'spotify:artist:56oDRnqbIiwx4mymNEv7dS'
            }],
            'external_urls': {
                'spotify': 'https://open.spotify.com/album/74gSdSHe71q7urGWMMn3qB'
            },
            'href': 'https://api.spotify.com/v1/albums/74gSdSHe71q7urGWMMn3qB',
            'id': '74gSdSHe71q7urGWMMn3qB',
            'images': [{'height': 640, 'width': 640}],
            'name': 'Cuz I Love You (Deluxe)',
            'release_date': '2019-05-03',
            'release_date_precision': 'day',
            'total_tracks': 14,
            'type': 'album',
            'uri': 'spotify:album:74gSdSHe71q7urGWMMn3qB'
        }
    }]
}

因此,您for i in lizzo_top_tracks['tracks']獲得的第一個(也是唯一一個)值將是這本字典:

i = {
    'album': {
        'album_type': 'album',
        'artists': [{
            'external_urls': {
                'spotify': 'https://open.spotify.com/artist/56oDRnqbIiwx4mymNEv7dS'
             },
            'href': 'https://api.spotify.com/v1/artists/56oDRnqbIiwx4mymNEv7dS',
            'id': '56oDRnqbIiwx4mymNEv7dS',
            'name': 'Lizzo',
            'type': 'artist',
            'uri': 'spotify:artist:56oDRnqbIiwx4mymNEv7dS'
        }],
        'external_urls': {
            'spotify': 'https://open.spotify.com/album/74gSdSHe71q7urGWMMn3qB'
        },
        'href': 'https://api.spotify.com/v1/albums/74gSdSHe71q7urGWMMn3qB',
        'id': '74gSdSHe71q7urGWMMn3qB',
        'images': [{'height': 640, 'width': 640}],
        'name': 'Cuz I Love You (Deluxe)',
        'release_date': '2019-05-03',
        'release_date_precision': 'day',
        'total_tracks': 14,
        'type': 'album',
        'uri': 'spotify:album:74gSdSHe71q7urGWMMn3qB'
    }
}

該字典中唯一的鍵是'album' ,其值是另一個包含所有其他信息的字典。 如果您想打印專輯發行日期和藝術家姓名列表,您可以:

for track in lizzo_top_tracks['tracks']:
    print('Album Release Date: ' + track['album']['release_date'])
    print('Artists: ' + str([artist['name'] for artist in track['album']['artists']]))

如果這些是您自己構建的字典,您可能希望刪除一些只有一個鍵的嵌套層,因為它們只會在不提供任何其他信息的情況下使導航結構變得更加困難。 例如:

lizzo_top_albums = [{
    'album_type': 'album',
    'artists': [{
        'external_urls': {
            'spotify': 'https://open.spotify.com/artist/56oDRnqbIiwx4mymNEv7dS'
        },
        'href': 'https://api.spotify.com/v1/artists/56oDRnqbIiwx4mymNEv7dS',
        'id': '56oDRnqbIiwx4mymNEv7dS',
        'name': 'Lizzo',
        'type': 'artist',
        'uri': 'spotify:artist:56oDRnqbIiwx4mymNEv7dS'
    }],
    'external_urls': {
        'spotify': 'https://open.spotify.com/album/74gSdSHe71q7urGWMMn3qB'
    },
    'href': 'https://api.spotify.com/v1/albums/74gSdSHe71q7urGWMMn3qB',
    'id': '74gSdSHe71q7urGWMMn3qB',
    'images': [{'height': 640, 'width': 640}],
    'name': 'Cuz I Love You (Deluxe)',
    'release_date': '2019-05-03',
    'release_date_precision': 'day',
    'total_tracks': 14,
    'type': 'album',
    'uri': 'spotify:album:74gSdSHe71q7urGWMMn3qB'
}]

此結構允許您按照最初嘗試的方式編寫查詢:

for album in lizzo_top_albums:
    print('Album Release Date: ' + album['release_date'])
    print('Artists: ' + str([artist['name'] for artist in album['artists']]))

簡單得多,對吧? :)

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM