python學習筆記——集合

來源:互聯網
上載者:User
文章目錄
  • 建立集合
  • 更新集合
建立集合

使用Factory 方法 set()和 frozenset():

>>> s = set('cheeseshop')>>> sset(['c', 'e', 'h', 'o', 'p', 's'])>>> t = frozenset('bookshop')>>> tfrozenset(['b', 'h', 'k', 'o', 'p', 's'])>>> type(s)<type 'set'>>>> type(t)<type 'frozenset'>
更新集合

用各種集合內建的方法和操作符添加和刪除集合的成員:

>>> s.add('z')>>> sset(['c', 'e', 'h', 'o', 'p', 's', 'z'])>>> s.update('pypi')>>> sset(['c', 'e', 'i', 'h', 'o', 'p', 's', 'y', 'z'])>>> s.remove('z')>>> sset(['c', 'e', 'i', 'h', 'o', 'p', 's', 'y'])>>> s -= set('pypi')>>> sset(['c', 'e', 'h', 'o', 's'])

刪除集合

del s

成員關係 (in, not in)

>>> s = set('cheeseshop')>>> t = frozenset('bookshop')>>> 'k' in sFalse>>> 'k' in tTrue>>> 'c' not in tTrue

集合等價/不等價

>>> s == tFalse>>> s != tTrue>>> u = frozenset(s)>>> s == uTrue>>> set('posh') == set('shop')True

差補/相對補集( – )

兩個集合(s 和t)的差補或相對補集是指一個集合C,該集合中的元素,只屬於集合s,而不屬於集合t。差符號有一個等價的方法,difference().

>>> s - tset(['c', 'e'])

對稱差分( ^ ):對稱差分是集合的XOR

利用集合去除列表中的重複元素

>>> xs = [5, 8, 5, 1, 1, 4, 2, 4, 3, 2]>>> set(xs)set([1, 2, 3, 4, 5, 8])>>> sorted(set(xs), key=xs.index) # 保持原來的順序[5, 8, 1, 4, 2, 3]
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.