What does “hashable” mean in Python?

后端 未结 9 871
挽巷
挽巷 2020-11-22 16:45

I tried searching internet but could not find the meaning of hashable.

When they say objects are hashable or hashable objects what does it

9条回答
  •  余生分开走
    2020-11-22 17:39

    In python it means that the object can be members of sets in order to return a index. That is, they have unique identity/ id.

    for example, in python 3.3:

    the data structure Lists are not hashable but the data structure Tuples are hashable.

提交回复
热议问题