Answer
The printout will be following-
True
False
False
False
True
True
Work Step by Step
The issuperset is a method of set class, which checks if the set is the superset of the given set.
The issubset is a method of set class, which checks if the set is the subset of the given set.
s1 < s2 returns True if s1 is a proper subset of s2.
s1 <= s2 returns True if s1 is a subset of s2.
s1 > s2 returns True if s1 is a proper superset of s2.
s1 >= s2 returns True if s1 is a superset of s2.
The output is calculated to above mentioned rules.