You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But the help(set.issubset) does not emphasize this. It only explains that it could test the inclusion relationship between two sets.
>>>help(set.issubset)
Helponmethod_descriptor:
issubset(...)
Reportwhetheranothersetcontainsthisset.
# Actually, it could accept an iterable>>> {'a'}.issubset('abc')
True
The same problem comes with the help(set.issuperset).