编程语言
首页 > 编程语言> > python取出frozenset中的元素存到列表list

python取出frozenset中的元素存到列表list

作者:互联网

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)

标签:python,list,列表,lst,frozenset,print,append
来源: https://blog.csdn.net/a1920993165/article/details/122277147