Este artículo demuestra diferentes operaciones en conjuntos de Python .
Ejemplos:
Input : A = {0, 2, 4, 6, 8} B = {1, 2, 3, 4, 5} Output : Union : [0, 1, 2, 3, 4, 5, 6, 8] Intersection : [2, 4] Difference : [8, 0, 6] Symmetric difference : [0, 1, 3, 5, 6, 8]
En Python, los operandos rápidos a continuación se pueden usar para diferentes operaciones.
| para unión
& para intersección.
– por diferencia
^ por diferencia simétrica
# Program to perform different set operations # as we do in mathematics # sets are define A = {0, 2, 4, 6, 8}; B = {1, 2, 3, 4, 5}; # union print("Union :", A | B) # intersection print("Intersection :", A & B) # difference print("Difference :", A - B) # symmetric difference print("Symmetric difference :", A ^ B)
Producción:
('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]))
Publicación traducida automáticamente
Artículo escrito por Shivani Ghughtyal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA