mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
8 lines
166 B
Python
8 lines
166 B
Python
print({1,2}.symmetric_difference({2,3}))
|
|
print({1,2}.symmetric_difference([2,3]))
|
|
s = {1,2}
|
|
print(s.symmetric_difference_update({2,3}))
|
|
l = list(s)
|
|
l.sort()
|
|
print(l)
|