mirror of
https://github.com/micropython/micropython.git
synced 2025-09-07 18:30:27 +02:00
10 lines
147 B
Python
10 lines
147 B
Python
s = {1}
|
|
print(s.remove(1))
|
|
print(list(s))
|
|
try:
|
|
print(s.remove(1), "!!!")
|
|
except KeyError:
|
|
pass
|
|
else:
|
|
print("failed to raise KeyError")
|