El método Python set issubset() devuelve True si todos los elementos de un conjunto A están presentes en otro conjunto B que se pasa como argumento y devuelve false si todos los elementos no están presentes.
Python establece issubset() Sintaxis:
A.issubset(B) checks whether A is a subset of B or not.
Python establece issubset() Devuelve:
returns true if A is a subset of B otherwise false.
Ejemplo de conjunto issubset() de Python
Ejemplo 1: Cómo funciona Python set issubset()
Python
# Python program to demonstrate working of # issubset(). A = {4, 1, 3, 5} B = {6, 0, 4, 1, 5, 0, 3, 5} # Returns True print(A.issubset(B)) # Returns False # B is not subset of A print(B.issubset(A))
Producción:
True False
Ejemplo 2: Trabajar con tres conjuntos usando issubset()
Python
# Another Python program to demonstrate working # of issubset(). A = {1, 2, 3} B = {1, 2, 3, 4, 5} C = {1, 2, 4, 5} # Returns True print(A.issubset(B)) # Returns False # B is not subset of A print(B.issubset(A)) # Returns False print(A.issubset(C)) # Returns True print(C.issubset(B))
Producción:
True False False True
Publicación traducida automáticamente
Artículo escrito por pawan_asipu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA