mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00
8 lines
101 B
Python
8 lines
101 B
Python
s = {1}
|
|
s.update()
|
|
print(s)
|
|
s.update([2])
|
|
print(sorted(s))
|
|
s.update([1,3], [2,2,4])
|
|
print(sorted(s))
|