【Python3】TypeError: unhashable type: 'list' -Python字典裡面不能有列表
Python字典裡面不能有列表
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
d1 = {}
d2 = {3: 5}
d3 = {[1, 2, 3]: 'user'}
d4 = {(1, 2, 3): 'user'}
print(type(d4))
執行上面程式碼會報錯,
Traceback (most recent call last):
File "E:/Gitee/myproj/005dictTest.py", line 6, in <module>
d3 = {[1, 2, 3]: 'user'}
TypeError: unhashable type: 'list'
Process finished with exit code 1
特此標記一下。
相關文章
- Python3 列表list合併的4種方法Python
- Python3 字典Python
- Python List 列表list()方法Python
- python列表(List)Python
- Python 列表(List)Python
- Python list(列表)Python
- Python-defaultdict(type)字典Python
- Python List 列表list()方法分享Python
- Python3之字串str、列表list、元組tuple的切片操作Python字串
- python3 筆記14.列表元組字典支援的函式Python筆記函式
- python3 字典的使用Python
- python--列表listPython
- Python3組合資料型別(元組、列表、集合、字典)語法Python資料型別
- Python資料型別(數字,字串,[列表],(元組),{字典:字典值},{列表,列表2})Python資料型別字串
- Python列表、元組、字典使用Python
- Python中的列表、元祖、字典Python
- 字串形式的列表,字典轉列表,字典字串
- Python List 列表的處理Python
- Python - list 列表常見方法Python
- python3 列表轉化成字串Python字串
- python 字典和列表巢狀用法Python巢狀
- python_列表——元組——字典——集合Python
- 玩轉python字典與列表(上)Python
- 玩轉python字典與列表(中)Python
- 玩轉python字典與列表(下)Python
- TypeError: Object of type ‘datetime‘ is not JSON serializableErrorObjectJSON
- python list列表基礎(元組)Python
- Python資料型別——列表(List)Python資料型別
- python list(列表)和tuple(元組)Python
- 傻瓜式學Python3——列表Python
- Python 列表與字典 排序 的奇妙之旅Python排序
- Python練習題篇(列表、字典、元祖)Python
- Python:字典列表字串方法測試Python字串
- Python中元組,列表,字典的區別Python
- Python3 如何找到字典的下標 indexPythonIndex
- python3 陣列(列表)初始化Python陣列
- python用pyinstaller生成exe時報錯 TypeError: an integer is required (got type bytes)PythonErrorUIGo
- python如何返回元組,列表或字典的?Python