Why am I getting a \'TypeError: unhashable type: \'dict\'\' in Python and how can I fix it?

Linda Hamilton
Release: 2024-10-28 05:41:01
Original
231 people have browsed it

Why am I getting a

TypeError: unhashable type: 'dict'

This error occurs when you attempt to use a dictionary as a key in a dictionary or in a set. Pythons has consists of immutable objects (such as strings, integers, floats, frozensets, and tuples of immutables) are hashable and can serve as keys. However, dictionaries are mutable and hence not hashable.

To use a dictionary as a key, you must convert it into a hashable format. If the dictionary contains only immutable values, you can create a hashable representation of it using frozenset():

<code class="python">dict_key = {"a": "b"}
key = frozenset(dict_key.items())</code>
Copy after login

Now you can use key as a key in a dictionary or set:

<code class="python">some_dict[key] = True</code>
Copy after login

If the dictionary contains values that are themselves dictionaries or lists, you need to recursively convert them to hashable formats. Here's a utility function that can help:

<code class="python">def freeze(d):
    if isinstance(d, dict):
        return frozenset((key, freeze(value)) for key, value in d.items())
    elif isinstance(d, list):
        return tuple(freeze(value) for value in d)
    return d</code>
Copy after login

By using this function, you can freeze the dictionary and then use it as a key:

<code class="python">key = freeze(dict_key)
some_dict[key] = True</code>
Copy after login

The above is the detailed content of Why am I getting a \'TypeError: unhashable type: \'dict\'\' in Python and how can I fix it?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!