day20200616
不能向集合中添加列表,字典,集合,會報(TypeError: unhashable type: 'list')錯誤。
可以添加元組。
s01 = set()
s01.add([1,2,3])
print(s01)
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刪除。