Last active
April 22, 2019 10:11
-
-
Save gastonfeng/93cb4b0b31b7a451555dee1560dd869f to your computer and use it in GitHub Desktop.
dict
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
d={[]:”str”,{}:”11”} | |
TypeError: unhashable type: ‘dict’ | |
python不支持dict的key为list或dict类型,因为list和dict类型是unhashable(不可哈希)的 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment