mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-20 20:45:35 -04:00
4 lines
46 B
Python
4 lines
46 B
Python
s = {1, 2}
|
|
print(s.discard(1))
|
|
print(list(s))
|