- 3
Alguien podría ayudarme
necesito crear un codigo que me diga si el subconjunto ola entra en el conjunto hola y que imprima si pertenece o no pertenece
1 Antwort
+ 3
Q: How to check if a set is a subset of another set?
A: Consider building a set from a list, then converting it with set(). Finally, check whether is a subset with issubset():
hola=set(['h','o','l','a']) #build a set
ola=set(['o','l','a']) #ditto
print(ola.issubset(hola)) #True