如何解压PYTHON中的键、值对?

How to unpack key,value pairs in python?(如何解压PYTHON中的键、值对?)
本文介绍了如何解压PYTHON中的键、值对?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试探索python中的算法MIA图像标记器。

client.algo("deeplearning/IllustrationTagger/0.2.5")
client.algo("deeplearning/InceptionNet/1.0.3")

但这与这个问题不太相关,因为它一般适用于词典。

for dict in dictList:
    print(dict)

以下是输出:

//{‘Safe’:0.9950032234191896}

//{‘可疑’:0.004409242421388626}

//{‘EXPLICIT’:0.00011681715113809332}

我可以很好地访问密钥:

for dict in dictList:
    for key in dict:
        print(key)

//安全

//有问题

//显式

但当我尝试同时解压密钥和值时:

for dict in dictList:
    for key, value in dict:
        print(key)
        print(value)

我收到此错误:

对于key,以dict为单位的值:
ValueError:要解包的值太多(应为%2)

如何同时访问键和值?

编辑:我已将obj和数组重命名为dict和list,以免与Java脚本表示法混淆。

推荐答案

如下-First:

for obj in objArray:
    for key in obj:
        value = obj[key]
        print(key)
        print(value)

第二个(蟒蛇3):

for obj in objArray:
    for key, value in obj.items():
           print(key)
           print(value)

对于python2,可以使用for key, value in d.iteritems()

这篇关于如何解压PYTHON中的键、值对?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)