python 基础

1030

>>> b
[1, 3, [1, 2], [1, 2]]
>>> list(b)
[1, 3, [1, 2], [1, 2]]
>>> set(b)
Traceback (most recent call last):
  File "", line 1, in 
    set(b)
TypeError: unhashable type: 'list'

原因:set 用hash计算的,因此元素不可变,但是列表是可变的

你可能感兴趣的:(python 基础)