龙空技术网

一日一技:Python中的set集合操作(并集,交集)

Python编程之美 265

前言:

现在咱们对“pythonset使用”大概比较着重,朋友们都想要了解一些“pythonset使用”的相关知识。那么小编同时在网络上搜集了一些关于“pythonset使用””的相关知识,希望我们能喜欢,咱们快快来了解一下吧!

在Python中,下面的快速操作符可用于不同的操作。

|   for union.  #并集&   for  intersection..  #交集–    for difference   #差分^      for symmetric difference  #对称差

代码举例:

A = {0, 2, 4, 6, 8}; B = {1, 2, 3, 4, 5}; # 并集print("Union :", A | B) # 交集print("Intersection :", A & B) #差分print("Difference :", A - B) # 对称差print("Symmetric difference :", A ^ B) 

输出为:

('Union :', set([0, 1, 2, 3, 4, 5, 6, 8]))('Intersection :', set([2, 4]))('Difference :', set([8, 0, 6]))('Symmetric difference :', set([0, 1, 3, 5, 6, 8]))

标签: #pythonset使用