1. 程式人生 > >python的set()函式

python的set()函式

Python2.7—
set() 函式建立一個無序不重複元素的集合,可進行關係測試,刪除重複資料,還可以計算交集、差集、並集等,返回新的集合物件

a=['1','2','3','2','2','3']#定義一個list
b=set(a)

print(b)            #set(['1', '3', '2'])
print(type(b))      #<type 'set'>
print(type({1:2}))  #<type 'dict'>

a.append('100') #listd新增元素用append
print(a)    #['1', '2'
, '3', '2', '2', '3', '100'] b.add('999') #set集合新增新元素用add print(b) #set(['1', '3', '2', '999']) print(b.remove('999')) #輸出None 去掉b中的一個元素,如果沒有這個元素會報錯 print(b) #set(['1', '3', '2']) b.clear() #清空set集合 print(b) #set([]) str='hello,welcome to China!' c=set(str) #字串型別的元素 print(c) #set
(['a', ' ', 'c', 'e', 'C', 'h', 'm', 'l', 'o', ',', 'i', '!', 't', 'w', 'n'])

輸出
set([‘1’, ‘3’, ‘2’])

a_list=['a','b','c','d','a','b']

one=set(a_list)
two={'a','e','f'}

print(one)                      #set(['a', 'c', 'b', 'd'])
print(one.difference(two))      #set(['c', 'b', 'd'])
print(one.intersection(two))    #set
(['a'])

輸出:
set([‘a’, ‘c’, ‘b’, ‘d’])
set([‘c’, ‘b’, ‘d’])
set([‘a’])