python取出frozenset中的元素存到列表
由于frozenset中的元素不能像set一样进行增加(.add())也不能减少(.remove)操作
所以我们希望用列表list来存frozenset内容,方便后续操作,用下面代码实现
a=frozenset([1,2,3,4])
b=frozenset({1,2,3,4})
lst=[]
for i in a:
lst.append(i)
print(lst)
for i in b:
lst.append(i)
print(lst)