“”"
集合只支持成员操作符号 for循环,不支持索引,重复,连接
“”"
s = {1,2,3}
#成员操作符
print(1 in s)
#for循环
for i in s:
print(i)
“”"
集合只支持成员操作符号 for循环,不支持索引,重复,连接
“”"
s = {1,2,3}
#成员操作符
print(1 in s)
#for循环
for i in s:
print(i)