Python 3.7 이상에서 사전을 순차적으로 색인하는 방법

Barbara Streisand
풀어 주다: 2024-10-17 18:10:02
원래의
769명이 탐색했습니다.

How to Index into a Dictionary Sequentially in Python 3.7 and Later

Indexing into a Dictionary: A Python 3.7 and Later Approach

In a dictionary, accessing values by key is the typical operation. However, in some cases, it may be desirable to index into a dictionary's entries sequentially as if it were a list. However, unlike lists, dictionaries do not have an inherent ordering.

Pre-Python 3.7 Dictionaries

In Python versions prior to 3.7, dictionaries were not ordered, and accessing the first entry using an index like colors[0] would result in a KeyError.

Ordered Dictionaries in Python 3.7 and Later

Starting with Python 3.7, dictionaries have become order-preserving, meaning they maintain the order of insertion. This behavior is similar to an OrderedDict from the collections module.

Accessing the First Entry

Despite the new ordering, there is still no dedicated method for indexing into a dictionary's keys or values directly. However, the following approaches can be used:

  • Convert to a List: Create a list of either the keys or values and access the first item like this:
<code class="python">first_key = list(colors)[0]
first_val = list(colors.values())[0]</code>
로그인 후 복사
  • Use a Custom Function: Define a helper function to iterate over the keys, returning the desired entry based on its index:
<code class="python">def get_first_key(dictionary):
    for key in dictionary:
        return key
    raise IndexError

first_key = get_first_key(colors)
first_val = colors[first_key]</code>
로그인 후 복사

Accessing the nth Entry

For indexing into keys or values beyond the first, a similar custom function approach can be used:

<code class="python">def get_nth_key(dictionary, n=0):
    if n < 0:
        n += len(dictionary)
    for i, key in enumerate(dictionary.keys()):
        if i == n:
            return key
    raise IndexError("dictionary index out of range") </code>
로그인 후 복사

By using these approaches, you can index into dictionaries in a manner similar to lists, even though dictionaries are not inherently ordered.

위 내용은 Python 3.7 이상에서 사전을 순차적으로 색인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:php
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!