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


下一篇:springboot整合最新版微信小程序支付 的工具类