访问任意字典元素
从 Python 字典中检索任何元素,而不依赖于特定的顺序或键。
原始代码
您可以通过迭代键并选择第一个值来访问任意键:
<code class="python">mydict[list(mydict.keys())[0]]</code>
替代方法
在字典的迭代值上使用 next() 函数获取第一个值:
<code class="python">Python 3: next(iter(mydict.values())) Python 2: mydict.itervalues().next()</code>
使用六大包同时处理 Python 2 和 3:
<code class="python">six.next(six.itervalues(mydict))</code>
同时检索和移除项目:
<code class="python">key, value = mydict.popitem()</code>
注意:
以上是如何在 Python 中访问任意字典元素的详细内容。更多信息请关注PHP中文网其他相关文章!