python基礎中遇到的問題(TypeError: unhashable type: 'list')


day20200616

不能向集合中添加列表,字典,集合,會報(TypeError: unhashable type: 'list')錯誤。

可以添加元組。

s01 = set()
s01.add([1,2,3])
print(s01)

TypeError: unhashable type: 'list'


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM