python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素.
创建 set
# 新方法 python 3.x 和 python 2.7 适用
t1={'1','2','4'}
#旧方法
t2=set(['1','2','4']}
t3=set('123')
使用 set
x={'s','p','a','m'}
y={'h','a','m'}
print(x,y)
#交集
print (x&y)
#并集
print(x|y)
python的set和其他语言类似, 是一个无序不重复元素集, 基本功能包括关系测试和消除重复元素.
# 新方法 python 3.x 和 python 2.7 适用
t1={'1','2','4'}
#旧方法
t2=set(['1','2','4']}
t3=set('123')
x={'s','p','a','m'}
y={'h','a','m'}
print(x,y)
#交集
print (x&y)
#并集
print(x|y)