固定集合 frozenset 发布于 2020-02-25 65 次阅读 Table of Contents """ 固定集合 """ f01 = frozenset([1,2,2,4]) print(type(f01)) print(f01)