Method signature:
issubset(anotherSetObject_in)
Overview:
- The issubset() method determines whether the set is a subset of another set passed as the parameter.
Parameters:
anotherSetObject_in : a Python set object.
Return Value:
True: When every element in the set is also present in anotherSetObject_in.
False: When every element in the set is not present in anotherSetObject_in.
Example:
# Example Python program that finds whether computerSciencePapers = {"Operating System Design", "Compiler Design","Programming Languages"} |
Output:
False |