Python 语言嵌套集合


本文向大家介绍Python 语言嵌套集合,包括了Python 语言嵌套集合的使用技巧和注意事项,需要的朋友参考一下

示例

{{1,2}, {3,4}}

导致:

TypeError: unhashable type: 'set'

而是使用frozenset:

{frozenset({1, 2}), frozenset({3, 4})}