溫馨提示×

python中set()函數(shù)的功能有哪些

小億
261
2024-01-26 14:13:40
欄目: 編程語言

Python中的set()函數(shù)有以下功能:

  1. 創(chuàng)建一個空集合:set()
  2. 將一個可迭代對象轉(zhuǎn)換為集合:set(iterable)
  3. 去除可迭代對象中的重復(fù)元素,返回一個新的集合:set([iterable])
  4. 添加元素到集合中:set.add(element)
  5. 移除集合中的元素:set.remove(element)
  6. 返回集合中的元素個數(shù):set.len()
  7. 判斷元素是否在集合中:set.contains(element)
  8. 求兩個集合的交集:set.intersection(other_set)
  9. 求兩個集合的并集:set.union(other_set)
  10. 求兩個集合的差集:set.difference(other_set)
  11. 判斷一個集合是否是另一個集合的子集:set.issubset(other_set)
  12. 判斷一個集合是否是另一個集合的超集:set.issuperset(other_set)
  13. 判斷兩個集合是否有交集:set.isdisjoint(other_set)
  14. 清空集合中的所有元素:set.clear()

0