2. python提示:TypeError: unhashable type: 'list'
Posted lintest
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2. python提示:TypeError: unhashable type: 'list'相关的知识,希望对你有一定的参考价值。
原因是,python字典的key不支持list类型和dict类型,需要转换
错误时
将list类型强制转换成string,用"".join(list)。 修改后:
以上是关于2. python提示:TypeError: unhashable type: 'list'的主要内容,如果未能解决你的问题,请参考以下文章
Python Socket TypeError: a bytes-like object is required, not 'str' 错误提示
Python 修改tuple元组提示:TypeError: ‘tuple‘ object does not support item assignment. 问题原因
Python中self的用法详解,或者总是提示:TypeError: add() missing 1 required positional argument: 'self'的问题解决