circuitpython/tests/basics/set_remove.py

10 lines
147 B
Python
Raw Normal View History

2014-01-12 13:23:36 -05:00
s = {1}
print(s.remove(1))
print(list(s))
try:
print(s.remove(1), "!!!")
except KeyError:
pass
else:
print("failed to raise KeyError")