PythonExtra/tests/basics/set_isfooset.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
186 B
Python
Raw Permalink Normal View History

2014-01-12 19:23:36 +01:00
sets = [set(), {1}, {1, 2, 3}, {3, 4, 5}, {5, 6, 7}]
args = sets + [[1], [1, 2], [1, 2 ,3]]
2014-01-12 19:23:36 +01:00
for i in sets:
for j in args:
2014-01-12 19:23:36 +01:00
print(i.issubset(j))
print(i.issuperset(j))