mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 20:45:35 -04:00
5 lines
152 B
Python
5 lines
152 B
Python
for i in 1, 2:
|
|
for o in {}, {1}, {2}:
|
|
print("{} in {}: {}".format(i, o, i in o))
|
|
print("{} not in {}: {}".format(i, o, i not in o))
|