mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 18:00:48 +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")
|