如何从Python的字典中检索数据?

问题描述 投票:-1回答:1

当我单击树视图项目时,它输出

{'text': 1, 'image': '', 'values': [1, '3:18:00', 'pm'], 'open': 0, 'tags': ''}

我如何检索1或pm之类的特定值?我用过


    queryResultTable.bind('<ButtonRelease-1>', select_item)

    def select_item(a):
        itemlibrary = queryResultTable.focus()
        print(queryResultTable.item(itemlibrary))

我尝试过.get但实际上无法到达任何地方

python dictionary treeview
1个回答
1
投票

尝试一下:

a = {'text': 1, 'image': '', 'values': [1, '3:18:00', 'pm'], 'open': 0, 'tags': ''}
print(a['values'][0])
print(a['values'][2])

这应该给您:

1
pm
© www.soinside.com 2019 - 2024. All rights reserved.