How to judge an object hashable or unhashable in python?

后端 未结 0 367
暗喜
暗喜 2021-02-02 14:07

I use this code to judge object can be hashed or not in python:

#hashable
number1=1.2 #float
number2=5 #int
str1=\'123\'#str
tuple1=(1,2,3)#tuple

# unhashable
li         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题