lzb1001 发表于 2022-12-23 23:23:04

关于列表、集合等

1、
>>> products = {{'iphone', 6888}, {'ipad', 5655}}
Traceback (most recent call last):
File "<pyshell#64>", line 1, in <module>
    products = {{'iphone', 6888}, {'ipad', 5655}}
TypeError: unhashable type: 'set'

2、
>>> products = {['iphone', 6888], ['ipad', 5655]}
Traceback (most recent call last):
File "<pyshell#63>", line 1, in <module>
    products = {['iphone', 6888], ['ipad', 5655]}
TypeError: unhashable type: 'list'

3、
>>> products = {('iphone', 6888), ('ipad', 5655)}
>>> print(products)
{('iphone', 6888), ('ipad', 5655)}

4、
>>> products = [{'iphone', 6888}, {'ipad', 5655}]
>>> print(products)
[{6888, 'iphone'}, {'ipad', 5655}]

5、
>>> products = [['iphone', 6888], ['ipad', 5655]]
>>> print(products)
[['iphone', 6888], ['ipad', 5655]]

6、
>>> products = [('iphone', 6888), ('ipad', 5655)]
>>> print(products)
[('iphone', 6888), ('ipad', 5655)]

7、
>>> products = ({'iphone', 6888}, {'ipad', 5655})
>>> print(products)
({6888, 'iphone'}, {'ipad', 5655})

8、
>>> products = (['iphone', 6888], ['ipad', 5655])
>>> print(products)
(['iphone', 6888], ['ipad', 5655])

9、
>>> products = (('iphone', 6888), ('ipad', 5655))
>>> print(products)
(('iphone', 6888), ('ipad', 5655))

-------------------------------------------
我的问题:

1和2为何出错?
3是什么?
4、5、6是列表?
7、8、9是什么?

lxping 发表于 2022-12-23 23:43:48

看一看这篇文章:https://fishc.com.cn/thread-45016-1-1.html可以解释前2个问题
4、5、6是都是列表,只是列表里面的元素是不同类型的数据
7、8、9是都是元组,只是元组里面的元素是不同类型的数据

patrickcui 发表于 2022-12-23 23:52:26

集合中是不能嵌套集合和列表的,集合是可变数据类型,所以1,2程序报错。
unhashable type: 'set':不可销毁的类型:“set”。
3是集合
4是列表
5是二维列表
6是列表
7是元组
8是元组
9是二元元组

tommyyu 发表于 2022-12-24 08:30:40

集合中的所有元素都必须是可哈希的,而可哈希的对象必须是不可变的,也就是元组、字符串、frozenset(冰冻集合)等。除了集合之外,字典的键也必须是可哈希的。
集合的存储方式 -> https://fishc.com.cn/thread-45016-1-1.html
除集合和字典外,其他的存储类型都没有这种限制。
页: [1]
查看完整版本: 关于列表、集合等