You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced 2026-05-20 10:30:31 -07:00
6 lines
147 B
Python
6 lines
147 B
Python
sets = [set(), {1}, {1, 2, 3}, {3, 4, 5}, {5, 6, 7}]
|
|
for i in sets:
|
|
for j in sets:
|
|
print(i.issubset(j))
|
|
print(i.issuperset(j))
|