mirror of
https://github.com/micropython/micropython.git
synced 2025-07-23 22:11:09 +02: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))
|