Skip to main content

easier access to nested lists

Project description

easier access to nested lists

pip install nestedlistops

Example Usage

    get_nested_item(l: Iterable, i: Iterable) -> Any
        Retrieves a nested item from a given list or nested list based on the provided index sequence.
        
        Args:
            l (Iterable): The initial list or nested list.
            i (Iterable): An iterable representing the index sequence to access the desired item.
        
        Returns:
            Any: The nested item at the specified index sequence.
        
        Examples:
            >>> from nestedlistops import set_nested_item, get_nested_item
            >>> listas = [[[1, 2], [3, 4]], [[4, 5], [6, 7]], [[7, 8], [9, 9]]]
            >>> get_nested_item(l=listas, i=(0, 1, 0))
            3
    
    
    set_nested_item(l: Iterable, i: Iterable, v: Any)
        Sets the value of a nested item in a given list or nested list based on the provided index sequence.
        
        Args:
            l (Iterable): The initial list or nested list.
            i (Iterable): An iterable representing the index sequence to access the desired item.
            v (Any): The value to be assigned to the nested item.
        
        Returns:
                None (the original iterable is modified)
        
        Examples:
            >>> from nestedlistops import set_nested_item, get_nested_item
            >>> listas = [[[1, 2], [3, 4]], [[4, 5], [6, 7]], [[7, 8], [9, 9]]]
            >>> set_nested_item(l=listas, i=(0, 1, 0), v=1111)
            >>> print(listas)
            [[[1, 2], [1111, 4]], [[4, 5], [6, 7]], [[7, 8], [9, 9]]]

Project details


Release history Release notifications | RSS feed

This version

0.10

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nestedlistops-0.10.tar.gz (3.1 kB view details)

Uploaded Source

Built Distribution

nestedlistops-0.10-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

Details for the file nestedlistops-0.10.tar.gz.

File metadata

  • Download URL: nestedlistops-0.10.tar.gz
  • Upload date:
  • Size: 3.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for nestedlistops-0.10.tar.gz
Algorithm Hash digest
SHA256 9aec709846ba6bf75fa83c00c0321828d6b88da45c58a1e475fdc009f190ce6b
MD5 8a3af16bfba3cff20898b780fbbff19a
BLAKE2b-256 8afcb3af0f13f2ac91a719067106bfdfe055b2c6c830c51f2e6b400e297997aa

See more details on using hashes here.

File details

Details for the file nestedlistops-0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for nestedlistops-0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 9d7f1da34c90410bb99d1a01913311514715340e077f1568c53aa8c4e088d530
MD5 32a9a7babec2a6d1cd9e5c8130ed0fd6
BLAKE2b-256 8ea82815f1947b6265266075378eb4a21601571a5e054d168a93db43eaaba13b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page