podzbiór w Python
smallSet = {'a', 'b'}
superSet = {'a', 'b', 'c'}
print(smallSet.issubset(superSet)) # This will return True
print(superSet.issubset(smallSet)) # This will return False
CompSciGeek